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:
authorJacques Guignot <guignot@wanadoo.fr>2003-07-10 12:27:34 +0400
committerJacques Guignot <guignot@wanadoo.fr>2003-07-10 12:27:34 +0400
commitf83cc2f8c5d28941899dba6a0bbfa7688443fa12 (patch)
tree8db3241d7d7ba4b6a92c454ac1c968fa351def7a
parentfaff7037780130c76566eaf8b089e21a8fee1ae0 (diff)
anged CurveCreatePyObject to Curce_CreatePyObject
-rw-r--r--source/blender/python/api2_2x/Object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Object.c b/source/blender/python/api2_2x/Object.c
index 718bed0a2dd..7f447f8e2d0 100644
--- a/source/blender/python/api2_2x/Object.c
+++ b/source/blender/python/api2_2x/Object.c
@@ -607,7 +607,7 @@ static PyObject *Object_getData (BPy_Object *self)
data_object = Camera_CreatePyObject (self->object->data);
break;
case OB_CURVE://#ID_CU:
- data_object = CurveCreatePyObject (self->object->data);
+ data_object = Curve_CreatePyObject (self->object->data);
break;
case ID_IM:
data_object = Image_CreatePyObject (self->object->data);