Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichel Selten <michel@mselten.demon.nl>2003-06-03 00:15:50 +0400
committerMichel Selten <michel@mselten.demon.nl>2003-06-03 00:15:50 +0400
commita127b387607fea5c0433bde26517a9fe575e72f9 (patch)
treee2d960360b338cbcd0559d377cbdc36717f5b6d0 /source/blender/python/api2_2x/Bone.c
parent271dc5aaf1f025725cd71ffa78a4cdc2b19d8fef (diff)
* Fix compilation errors on Windows hopefully. Implemented the suggestion done
by Aphex - thanks. * Added the doc strings to the Object module. * Added more functionality to the Object module.
Diffstat (limited to 'source/blender/python/api2_2x/Bone.c')
-rw-r--r--source/blender/python/api2_2x/Bone.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Bone.c b/source/blender/python/api2_2x/Bone.c
index ca9b6764220..c6161ee3206 100644
--- a/source/blender/python/api2_2x/Bone.c
+++ b/source/blender/python/api2_2x/Bone.c
@@ -148,7 +148,7 @@ static int BonePrint (C_Bone *bone, FILE *fp, int flags);
/*****************************************************************************/
static PyTypeObject Bone_Type =
{
- PyObject_HEAD_INIT(&PyType_Type)
+ PyObject_HEAD_INIT(NULL)
0, /* ob_size */
"Bone", /* tp_name */
sizeof (C_Bone), /* tp_basicsize */
@@ -224,6 +224,8 @@ PyObject *M_Bone_Init (void)
{
PyObject *submodule;
+ Bone_Type.ob_type = &PyType_Type;
+
printf ("In M_Bone_Init()\n");
submodule = Py_InitModule3("Blender.Armature.Bone",