From ee5dc4d0bf99fe457ece7b37df72dc1cc12e3cd1 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 15 Mar 2007 01:09:14 +0000 Subject: removed duplicate functionality, macro's and functions existed to check a PyObjects type, now only use macro's --- source/blender/python/api2_2x/Texture.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'source/blender/python/api2_2x/Texture.c') diff --git a/source/blender/python/api2_2x/Texture.c b/source/blender/python/api2_2x/Texture.c index 909efcc680b..9e657dec109 100644 --- a/source/blender/python/api2_2x/Texture.c +++ b/source/blender/python/api2_2x/Texture.c @@ -1339,11 +1339,6 @@ Tex *Texture_FromPyObject( PyObject * pyobj ) return ( ( BPy_Texture * ) pyobj )->texture; } -int Texture_CheckPyObject( PyObject * pyobj ) -{ - return ( pyobj->ob_type == &Texture_Type ); -} - /*****************************************************************************/ /* Python BPy_Texture methods: */ /*****************************************************************************/ @@ -1966,7 +1961,7 @@ static int Texture_setIpo( BPy_Texture * self, PyObject * value ) /* if parameter is not None, check for valid Ipo */ if ( value != Py_None ) { - if ( !Ipo_CheckPyObject( value ) ) + if ( !BPy_Ipo_Check( value ) ) return EXPP_ReturnIntError( PyExc_RuntimeError, "expected an Ipo object" ); -- cgit v1.2.3