/*****************************************************************************/
/* Python BPy_Curve instance methods declarations: */
/*****************************************************************************/
-static PyObject *Curve_getName( BPy_Curve * self );
-static PyObject *Curve_setName( BPy_Curve * self, PyObject * args );
+PyObject *Curve_getName( BPy_Curve * self );
+PyObject *Curve_setName( BPy_Curve * self, PyObject * args );
static PyObject *Curve_getPathLen( BPy_Curve * self );
static PyObject *Curve_setPathLen( BPy_Curve * self, PyObject * args );
static PyObject *Curve_getTotcol( BPy_Curve * self );
/*****************************************************************************/
-static PyObject *Curve_getName( BPy_Curve * self )
+PyObject *Curve_getName( BPy_Curve * self )
{
PyObject *attr = PyString_FromString( self->curve->id.name + 2 );
"couldn't get Curve.name attribute" ) );
}
-static PyObject *Curve_setName( BPy_Curve * self, PyObject * args )
+PyObject *Curve_setName( BPy_Curve * self, PyObject * args )
{
char *name;
char buf[50];