aboutsummaryrefslogtreecommitdiffstats
path: root/libshiboken/basewrapper.h
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.pl@gmail.com>2010-11-10 14:36:07 -0200
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:08:57 -0300
commitcdeb0172eca90f2050313b589fb068145d882dbb (patch)
treee7340214a3df7ebb7386b79751032bffa3576240 /libshiboken/basewrapper.h
parent6c031f64b1e0369d468274be4d3d0107e45fc722 (diff)
Variable SbkBaseWrapperType_Type renamed to SbkObjectType_Type
Diffstat (limited to 'libshiboken/basewrapper.h')
-rw-r--r--libshiboken/basewrapper.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libshiboken/basewrapper.h b/libshiboken/basewrapper.h
index 3e42ee86b..c6b936b75 100644
--- a/libshiboken/basewrapper.h
+++ b/libshiboken/basewrapper.h
@@ -71,7 +71,7 @@ typedef bool (*ExtendedIsConvertibleFunc)(PyObject*);
// Used in userdata dealloc function
typedef void (*DeleteUserDataFunc)(void*);
-extern LIBSHIBOKEN_API PyTypeObject SbkBaseWrapperType_Type;
+extern LIBSHIBOKEN_API PyTypeObject SbkObjectType_Type;
extern LIBSHIBOKEN_API SbkObjectType SbkObject_Type;
/// PyTypeObject extended with C++ multiple inheritance information.
@@ -138,7 +138,7 @@ LIBSHIBOKEN_API void destroyParentInfo(SbkObject* obj, bool removeFromParent = t
*/
inline bool isShibokenType(PyObject*& pyObj)
{
- return pyObj->ob_type->ob_type == &SbkBaseWrapperType_Type;
+ return pyObj->ob_type->ob_type == &SbkObjectType_Type;
}
/**