From 3482beef163ba89900982bbc89098eb6747ba7c5 Mon Sep 17 00:00:00 2001 From: Jacques Guignot Date: Wed, 9 Jul 2003 23:19:18 +0000 Subject: [PATCH] name changes for Curve functions (added an underscore) --- source/blender/python/api2_2x/modules.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/blender/python/api2_2x/modules.h b/source/blender/python/api2_2x/modules.h index 2704189b954..8f5e4104593 100644 --- a/source/blender/python/api2_2x/modules.h +++ b/source/blender/python/api2_2x/modules.h @@ -108,9 +108,9 @@ int Lamp_CheckPyObject (PyObject *pyobj); /* Curve Data */ PyObject * Curve_Init (void); -PyObject * CurveCreatePyObject (struct Curve *curve); -Curve * CurveFromPyObject (PyObject *py_obj); -int CurveCheckPyObject (PyObject *py_obj); +PyObject * Curve_CreatePyObject (struct Curve *curve); +Curve * Curve_FromPyObject (PyObject *py_obj); +int Curve_CheckPyObject (PyObject *py_obj); /* Armature Data */ PyObject * Armature_Init (void);