diff --git a/source/blender/python/api2_2x/Group.h b/source/blender/python/api2_2x/Group.h index 613a14908a9..bf68da1f7b7 100755 --- a/source/blender/python/api2_2x/Group.h +++ b/source/blender/python/api2_2x/Group.h @@ -47,8 +47,8 @@ extern PyTypeObject GroupObSeq_Type; /* Python BPy_Group structure definition. */ /*****************************************************************************/ typedef struct { - PyObject_HEAD /* required python macro */ - struct Group *group; /* Blender group type, can be NULL when unlinkedm, libdata must be second */*/ + PyObject_HEAD + struct Group *group; } BPy_Group; diff --git a/source/blender/python/api2_2x/SurfNurb.h b/source/blender/python/api2_2x/SurfNurb.h index c9f9beadeeb..dcb4f9d4280 100644 --- a/source/blender/python/api2_2x/SurfNurb.h +++ b/source/blender/python/api2_2x/SurfNurb.h @@ -41,8 +41,8 @@ extern PyTypeObject SurfNurb_Type; /* Python BPy_SurfNurb structure definition */ typedef struct { - PyObject_HEAD /* required py macro */ - Nurb * nurb; /* pointer to Blender data, libdata must be second */ */ + PyObject_HEAD + Nurb * nurb; /* iterator stuff */ /* internal ptrs to point data. do not free */