[Bf-blender-cvs] [0a5e00e] master: Code Cleanup: style

Campbell Barton noreply at git.blender.org
Mon Dec 23 19:05:17 CET 2013


Commit: 0a5e00e8e836983149157155ca560c01f18e5609
Author: Campbell Barton
Date:   Tue Dec 24 05:04:29 2013 +1100
http://developer.blender.org/rB0a5e00e8e836983149157155ca560c01f18e5609

Code Cleanup: style

===================================================================

M	source/blender/editors/space_info/info_ops.c
M	source/blender/modifiers/intern/MOD_wireframe.c
M	source/blender/python/generic/bpy_threads.c

===================================================================

diff --git a/source/blender/editors/space_info/info_ops.c b/source/blender/editors/space_info/info_ops.c
index 6690d1c..ace3b8d 100644
--- a/source/blender/editors/space_info/info_ops.c
+++ b/source/blender/editors/space_info/info_ops.c
@@ -130,7 +130,7 @@ static int autopack_toggle_exec(bContext *C, wmOperator *op)
 {
 	Main *bmain = CTX_data_main(C);
 
-	if(G.fileflags & G_AUTOPACK) {
+	if (G.fileflags & G_AUTOPACK) {
 		G.fileflags &= ~G_AUTOPACK;		
 	}
 	else {
diff --git a/source/blender/modifiers/intern/MOD_wireframe.c b/source/blender/modifiers/intern/MOD_wireframe.c
index af228ca..3ebd9bd 100644
--- a/source/blender/modifiers/intern/MOD_wireframe.c
+++ b/source/blender/modifiers/intern/MOD_wireframe.c
@@ -75,7 +75,7 @@ static CustomDataMask requiredDataMask(Object *UNUSED(ob), ModifierData *md)
 
 }
 
-static DerivedMesh* WireframeModifier_do( WireframeModifierData *wmd, Object *ob, DerivedMesh *dm)
+static DerivedMesh *WireframeModifier_do( WireframeModifierData *wmd, Object *ob, DerivedMesh *dm)
 {
 	DerivedMesh *result;
 	BMesh *bm;
diff --git a/source/blender/python/generic/bpy_threads.c b/source/blender/python/generic/bpy_threads.c
index 610c184..63a47ff 100644
--- a/source/blender/python/generic/bpy_threads.c
+++ b/source/blender/python/generic/bpy_threads.c
@@ -27,14 +27,6 @@
  * these functions are slightly different from the original Python API,
  * don't throw SIGABRT even if the thread state is NULL. */
 
-/** \file blender/python/intern/bpy_interface.c
- *  \ingroup pythonintern
- *
- * This file deals with embedding the python interpreter within blender,
- * starting and stopping python and exposing blender/python modules so they can
- * be accesses from scripts.
- */
-
 /* grr, python redefines */
 #ifdef _POSIX_C_SOURCE
 #  undef _POSIX_C_SOURCE




More information about the Bf-blender-cvs mailing list