Revision: 39883
          
http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=39883
Author:   campbellbarton
Date:     2011-09-03 02:15:49 +0000 (Sat, 03 Sep 2011)
Log Message:
-----------
whitespace edits

Modified Paths:
--------------
    trunk/blender/source/blender/python/intern/bpy_rna.c
    trunk/blender/source/gameengine/BlenderRoutines/KX_BlenderInputDevice.h
    trunk/blender/source/gameengine/Converter/BL_MeshDeformer.h
    trunk/blender/source/gameengine/Converter/BL_ShapeDeformer.h
    trunk/blender/source/gameengine/Converter/KX_BlenderSceneConverter.cpp
    trunk/blender/source/gameengine/Converter/KX_ConvertActuators.cpp
    trunk/blender/source/gameengine/GameLogic/SCA_2DFilterActuator.h
    trunk/blender/source/gameengine/GameLogic/SCA_PythonController.h
    trunk/blender/source/gameengine/GameLogic/SCA_RandomActuator.cpp
    trunk/blender/source/gameengine/GamePlayer/ghost/GPG_Application.cpp
    trunk/blender/source/gameengine/GamePlayer/xembed/npunix.c
    trunk/blender/source/gameengine/Ketsji/KXNetwork/KX_NetworkEventManager.h
    trunk/blender/source/gameengine/Ketsji/KX_GameObject.cpp
    trunk/blender/source/gameengine/Ketsji/KX_ObjectActuator.cpp
    trunk/blender/source/gameengine/Ketsji/KX_OrientationInterpolator.cpp
    trunk/blender/source/gameengine/Ketsji/KX_PolygonMaterial.cpp
    trunk/blender/source/gameengine/Ketsji/KX_TrackToActuator.h
    
trunk/blender/source/gameengine/Network/LoopBackNetwork/NG_LoopBackNetworkDeviceInterface.h
    trunk/blender/source/gameengine/Network/NG_NetworkDeviceInterface.h
    trunk/blender/source/gameengine/Physics/Bullet/CcdPhysicsController.h
    trunk/blender/source/gameengine/Physics/Bullet/CcdPhysicsEnvironment.cpp
    trunk/blender/source/gameengine/Physics/Bullet/CcdPhysicsEnvironment.h
    trunk/blender/source/gameengine/Rasterizer/RAS_2DFilterManager.cpp
    trunk/blender/source/gameengine/Rasterizer/RAS_CameraData.h
    
trunk/blender/source/gameengine/Rasterizer/RAS_OpenGLFilters/RAS_Blur2DFilter.h
    
trunk/blender/source/gameengine/Rasterizer/RAS_OpenGLFilters/RAS_Dilation2DFilter.h
    
trunk/blender/source/gameengine/Rasterizer/RAS_OpenGLFilters/RAS_Erosion2DFilter.h
    
trunk/blender/source/gameengine/Rasterizer/RAS_OpenGLFilters/RAS_Laplacian2DFilter.h
    
trunk/blender/source/gameengine/Rasterizer/RAS_OpenGLFilters/RAS_Prewitt2DFilter.h
    
trunk/blender/source/gameengine/Rasterizer/RAS_OpenGLFilters/RAS_Sharpen2DFilter.h
    
trunk/blender/source/gameengine/Rasterizer/RAS_OpenGLFilters/RAS_Sobel2DFilter.h
    trunk/blender/source/gameengine/SceneGraph/SG_DList.h
    trunk/blender/source/gameengine/SceneGraph/SG_IObject.h
    trunk/blender/source/gameengine/SceneGraph/SG_QList.h
    trunk/blender/source/gameengine/SceneGraph/SG_Spatial.cpp
    trunk/blender/source/gameengine/VideoTexture/Exception.h
    trunk/blender/source/gameengine/VideoTexture/ImageBase.cpp
    trunk/blender/source/gameengine/VideoTexture/ImageRender.cpp

Modified: trunk/blender/source/blender/python/intern/bpy_rna.c
===================================================================
--- trunk/blender/source/blender/python/intern/bpy_rna.c        2011-09-02 
19:25:32 UTC (rev 39882)
+++ trunk/blender/source/blender/python/intern/bpy_rna.c        2011-09-03 
02:15:49 UTC (rev 39883)
@@ -4631,28 +4631,28 @@
 /* note: tp_base member is set to &PyType_Type on init */
 PyTypeObject pyrna_struct_meta_idprop_Type= {
        PyVarObject_HEAD_INIT(NULL, 0)
-       "bpy_struct_meta_idprop",       /* tp_name */
-       sizeof(PyHeapTypeObject),               /* tp_basicsize */ // XXX, 
would be PyTypeObject, but subtypes of Type must be PyHeapTypeObject's
-       0,                                                      /* tp_itemsize 
*/
+       "bpy_struct_meta_idprop",   /* tp_name */
+       sizeof(PyHeapTypeObject),   /* tp_basicsize */ // XXX, would be 
PyTypeObject, but subtypes of Type must be PyHeapTypeObject's
+       0,                          /* tp_itemsize */
        /* methods */
-       NULL,                                           /* tp_dealloc */
+       NULL,                       /* tp_dealloc */
        NULL,                       /* printfunc tp_print; */
-       NULL,                                           /* getattrfunc 
tp_getattr; */
-       NULL,                                           /* setattrfunc 
tp_setattr; */
-       NULL,                                           /* tp_compare */ /* 
deprecated in python 3.0! */
-       NULL,                                           /* tp_repr */
+       NULL,                       /* getattrfunc tp_getattr; */
+       NULL,                       /* setattrfunc tp_setattr; */
+       NULL,                       /* tp_compare */ /* deprecated in python 
3.0! */
+       NULL,                       /* tp_repr */
 
        /* Method suites for standard classes */
        NULL,                       /* PyNumberMethods *tp_as_number; */
-       NULL,                                           /* PySequenceMethods 
*tp_as_sequence; */
-       NULL,                                           /* PyMappingMethods 
*tp_as_mapping; */
+       NULL,                       /* PySequenceMethods *tp_as_sequence; */
+       NULL,                       /* PyMappingMethods *tp_as_mapping; */
 
        /* More standard operations (here for binary compatibility) */
-       NULL,                                           /* hashfunc tp_hash; */
-       NULL,                                           /* ternaryfunc tp_call; 
*/
-       NULL,                                           /* reprfunc tp_str; */
-       NULL /*(getattrofunc) pyrna_struct_meta_idprop_getattro*/,      /* 
getattrofunc tp_getattro; */
-       (setattrofunc) pyrna_struct_meta_idprop_setattro,       /* setattrofunc 
tp_setattro; */
+       NULL,                       /* hashfunc tp_hash; */
+       NULL,                       /* ternaryfunc tp_call; */
+       NULL,                       /* reprfunc tp_str; */
+       NULL /*(getattrofunc) pyrna_struct_meta_idprop_getattro*/, /* 
getattrofunc tp_getattro; */
+       (setattrofunc) pyrna_struct_meta_idprop_setattro, /* setattrofunc 
tp_setattro; */
 
        /* Functions to access object as input/output buffer */
        NULL,                       /* PyBufferProcs *tp_as_buffer; */
@@ -4660,7 +4660,7 @@
   /*** Flags to define presence of optional/expanded features ***/
        Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,         /* long tp_flags; */
 
-       NULL,                                           /*  char *tp_doc;  
Documentation string */
+       NULL,                       /*  char *tp_doc;  Documentation string */
   /*** Assigned meaning in release 2.0 ***/
        /* call function for all accessible objects */
        NULL,                       /* traverseproc tp_traverse; */
@@ -4670,7 +4670,7 @@
 
   /***  Assigned meaning in release 2.1 ***/
   /*** rich comparisons ***/
-       NULL,   /* richcmpfunc tp_richcompare; */
+       NULL,                       /* richcmpfunc tp_richcompare; */
 
   /***  weak reference enabler ***/
        0,                          /* long tp_weaklistoffset; */
@@ -4681,9 +4681,9 @@
        NULL,                       /* iternextfunc tp_iternext; */
 
   /*** Attribute descriptor and subclassing stuff ***/
-       NULL,                                           /* struct PyMethodDef 
*tp_methods; */
+       NULL,                       /* struct PyMethodDef *tp_methods; */
        NULL,                       /* struct PyMemberDef *tp_members; */
-       NULL,                                           /* struct PyGetSetDef 
*tp_getset; */
+       NULL,                       /* struct PyGetSetDef *tp_getset; */
        NULL,                       /* struct _typeobject *tp_base; */
        NULL,                       /* PyObject *tp_dict; */
        NULL,                       /* descrgetfunc tp_descr_get; */
@@ -4691,7 +4691,7 @@
        0,                          /* long tp_dictoffset; */
        NULL,                       /* initproc tp_init; */
        NULL,                       /* allocfunc tp_alloc; */
-       NULL,                                           /* newfunc tp_new; */
+       NULL,                       /* newfunc tp_new; */
        /*  Low-level free-memory routine */
        NULL,                       /* freefunc tp_free;  */
        /* For PyObject_IS_GC */
@@ -4709,45 +4709,45 @@
 /*-----------------------BPy_StructRNA method 
def------------------------------*/
 PyTypeObject pyrna_struct_Type= {
        PyVarObject_HEAD_INIT(NULL, 0)
-       "bpy_struct",                   /* tp_name */
-       sizeof(BPy_StructRNA),  /* tp_basicsize */
-       0,                      /* tp_itemsize */
+       "bpy_struct",               /* tp_name */
+       sizeof(BPy_StructRNA),      /* tp_basicsize */
+       0,                          /* tp_itemsize */
        /* methods */
        (destructor) pyrna_struct_dealloc,/* tp_dealloc */
        NULL,                       /* printfunc tp_print; */
-       NULL,                                           /* getattrfunc 
tp_getattr; */
-       NULL,                                           /* setattrfunc 
tp_setattr; */
-       NULL,                                           /* tp_compare */ /* 
DEPRECATED in python 3.0! */
-       (reprfunc) pyrna_struct_repr,   /* tp_repr */
+       NULL,                       /* getattrfunc tp_getattr; */
+       NULL,                       /* setattrfunc tp_setattr; */
+       NULL,                       /* tp_compare */ /* DEPRECATED in python 
3.0! */
+       (reprfunc) pyrna_struct_repr, /* tp_repr */
 
        /* Method suites for standard classes */
 
        NULL,                       /* PyNumberMethods *tp_as_number; */
-       &pyrna_struct_as_sequence,      /* PySequenceMethods *tp_as_sequence; */
-       &pyrna_struct_as_mapping,       /* PyMappingMethods *tp_as_mapping; */
+       &pyrna_struct_as_sequence,  /* PySequenceMethods *tp_as_sequence; */
+       &pyrna_struct_as_mapping,   /* PyMappingMethods *tp_as_mapping; */
 
        /* More standard operations (here for binary compatibility) */
 
-       (hashfunc) pyrna_struct_hash,   /* hashfunc tp_hash; */
-       NULL,                                           /* ternaryfunc tp_call; 
*/
+       (hashfunc) pyrna_struct_hash, /* hashfunc tp_hash; */
+       NULL,                       /* ternaryfunc tp_call; */
        (reprfunc) pyrna_struct_str, /* reprfunc tp_str; */
-       (getattrofunc) pyrna_struct_getattro,   /* getattrofunc tp_getattro; */
-       (setattrofunc) pyrna_struct_setattro,   /* setattrofunc tp_setattro; */
+       (getattrofunc) pyrna_struct_getattro, /* getattrofunc tp_getattro; */
+       (setattrofunc) pyrna_struct_setattro, /* setattrofunc tp_setattro; */
 
        /* Functions to access object as input/output buffer */
        NULL,                       /* PyBufferProcs *tp_as_buffer; */
 
   /*** Flags to define presence of optional/expanded features ***/
-       Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC,         
/* long tp_flags; */
+       Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC, /* long 
tp_flags; */
 
-       NULL,                                           /*  char *tp_doc;  
Documentation string */
+       NULL,                       /*  char *tp_doc;  Documentation string */
   /*** Assigned meaning in release 2.0 ***/
        /* call function for all accessible objects */
 #ifdef USE_PYRNA_STRUCT_REFERENCE
-       (traverseproc) pyrna_struct_traverse,                       /* 
traverseproc tp_traverse; */
+       (traverseproc) pyrna_struct_traverse, /* traverseproc tp_traverse; */
 
        /* delete references to contained objects */
-       (inquiry)pyrna_struct_clear,                       /* inquiry tp_clear; 
*/
+       (inquiry)pyrna_struct_clear, /* inquiry tp_clear; */
 #else
        NULL,                       /* traverseproc tp_traverse; */
 
@@ -4757,11 +4757,11 @@
 
   /***  Assigned meaning in release 2.1 ***/
   /*** rich comparisons ***/
-       (richcmpfunc)pyrna_struct_richcmp,      /* richcmpfunc tp_richcompare; 
*/
+       (richcmpfunc)pyrna_struct_richcmp, /* richcmpfunc tp_richcompare; */
 
   /***  weak reference enabler ***/
 #ifdef USE_WEAKREFS
-       offsetof(BPy_StructRNA, in_weakreflist),        /* long 
tp_weaklistoffset; */
+       offsetof(BPy_StructRNA, in_weakreflist), /* long tp_weaklistoffset; */
 #else
        0,
 #endif
@@ -4771,9 +4771,9 @@
        NULL,                       /* iternextfunc tp_iternext; */
 
   /*** Attribute descriptor and subclassing stuff ***/
-       pyrna_struct_methods,                   /* struct PyMethodDef 
*tp_methods; */
+       pyrna_struct_methods,       /* struct PyMethodDef *tp_methods; */
        NULL,                       /* struct PyMemberDef *tp_members; */
-       pyrna_struct_getseters,         /* struct PyGetSetDef *tp_getset; */
+       pyrna_struct_getseters,     /* struct PyGetSetDef *tp_getset; */
        NULL,                       /* struct _typeobject *tp_base; */
        NULL,                       /* PyObject *tp_dict; */
        NULL,                       /* descrgetfunc tp_descr_get; */
@@ -4781,7 +4781,7 @@
        0,                          /* long tp_dictoffset; */
        NULL,                       /* initproc tp_init; */
        NULL,                       /* allocfunc tp_alloc; */
-       pyrna_struct_new,                       /* newfunc tp_new; */
+       pyrna_struct_new,           /* newfunc tp_new; */
        /*  Low-level free-memory routine */
        NULL,                       /* freefunc tp_free;  */
        /* For PyObject_IS_GC */
@@ -4798,32 +4798,32 @@
 /*-----------------------BPy_PropertyRNA method 
def------------------------------*/
 PyTypeObject pyrna_prop_Type= {
        PyVarObject_HEAD_INIT(NULL, 0)
-       "bpy_prop",             /* tp_name */
-       sizeof(BPy_PropertyRNA),                        /* tp_basicsize */
-       0,                      /* tp_itemsize */
+       "bpy_prop",                 /* tp_name */
+       sizeof(BPy_PropertyRNA),    /* tp_basicsize */
+       0,                          /* tp_itemsize */
        /* methods */
        (destructor) pyrna_prop_dealloc, /* tp_dealloc */
-       NULL,                                           /* printfunc tp_print; 
*/
-       NULL,                                           /* getattrfunc 
tp_getattr; */
+       NULL,                       /* printfunc tp_print; */
+       NULL,                       /* getattrfunc tp_getattr; */
        NULL,                       /* setattrfunc tp_setattr; */
-       NULL,                                           /* tp_compare */ /* 
DEPRECATED in python 3.0! */
-       (reprfunc) pyrna_prop_repr,     /* tp_repr */
+       NULL,                       /* tp_compare */ /* DEPRECATED in python 
3.0! */
+       (reprfunc) pyrna_prop_repr, /* tp_repr */
 
        /* Method suites for standard classes */
 
        NULL,                       /* PyNumberMethods *tp_as_number; */
-       NULL,                                           /* PySequenceMethods 
*tp_as_sequence; */
-       NULL,                                           /* PyMappingMethods 
*tp_as_mapping; */
+       NULL,                       /* PySequenceMethods *tp_as_sequence; */
+       NULL,                       /* PyMappingMethods *tp_as_mapping; */
 
        /* More standard operations (here for binary compatibility) */
 

@@ Diff output truncated at 10240 characters. @@
_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to