From 2385c51360014f19e1d823b8009bd7772adac8d8 Mon Sep 17 00:00:00 2001 From: Tamito Kajiyama Date: Sun, 9 May 2010 18:05:33 +0000 Subject: Renamed FrsCurve, FrsNoise and FrsMaterial Python extension types to those names without the "Frs" prefix. These types are part of the Freestyle module, so that there is no need to make their names globally unique. --- source/blender/freestyle/intern/python/BPy_Interface1D.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/freestyle/intern/python/BPy_Interface1D.cpp') diff --git a/source/blender/freestyle/intern/python/BPy_Interface1D.cpp b/source/blender/freestyle/intern/python/BPy_Interface1D.cpp index f35ef62030d..3b5924464fe 100644 --- a/source/blender/freestyle/intern/python/BPy_Interface1D.cpp +++ b/source/blender/freestyle/intern/python/BPy_Interface1D.cpp @@ -31,7 +31,7 @@ int Interface1D_Init( PyObject *module ) if( PyType_Ready( &FrsCurve_Type ) < 0 ) return -1; Py_INCREF( &FrsCurve_Type ); - PyModule_AddObject(module, "FrsCurve", (PyObject *)&FrsCurve_Type); + PyModule_AddObject(module, "Curve", (PyObject *)&FrsCurve_Type); if( PyType_Ready( &Chain_Type ) < 0 ) return -1; -- cgit v1.2.3