aboutsummaryrefslogtreecommitdiffstats
path: root/libshiboken/bindingmanager.h
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.pl@gmail.com>2010-11-10 14:19:44 -0200
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:08:57 -0300
commit8c7e60cc6bb07bd58a555d782bcac984f42866bf (patch)
treea153d51652e1b9322b69d01c115c7699900043d7 /libshiboken/bindingmanager.h
parent4d0bbcf41feb5a1e2a1e7adc52f40ad0f187d6ea (diff)
SbkBaseWrapperType renamed to SbkObjectType.
Diffstat (limited to 'libshiboken/bindingmanager.h')
-rw-r--r--libshiboken/bindingmanager.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libshiboken/bindingmanager.h b/libshiboken/bindingmanager.h
index 8a6607fd4..c1926e5ee 100644
--- a/libshiboken/bindingmanager.h
+++ b/libshiboken/bindingmanager.h
@@ -28,7 +28,7 @@
#include "shibokenmacros.h"
struct SbkObject;
-struct SbkBaseWrapperType;
+struct SbkObjectType;
namespace Shiboken
{
@@ -56,8 +56,8 @@ public:
void transferOwnershipToCpp(SbkObject* wrapper);
/// Convenience method to call transferOwnershipToCpp with a properly cast SbkBaseWrapper.
void transferOwnershipToCpp(PyObject* wrapper);
- void addClassInheritance(SbkBaseWrapperType* parent, SbkBaseWrapperType* child);
- SbkBaseWrapperType* resolveType(void* cptr, SbkBaseWrapperType* type);
+ void addClassInheritance(SbkObjectType* parent, SbkObjectType* child);
+ SbkObjectType* resolveType(void* cptr, SbkObjectType* type);
/// Called by wrapper destructor
void destroyWrapper(const void* cptr);