aboutsummaryrefslogtreecommitdiffstats
path: root/libshiboken/basewrapper.cpp
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.pl@gmail.com>2010-11-10 15:32:48 -0200
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:08:58 -0300
commitf06b9117b6f57419409ca67437166941cda306cd (patch)
treedbab8216fcaeb69273c8e7cdc5a185f2aad329db /libshiboken/basewrapper.cpp
parent43c16539246a1ac6abc12b141ab32b5932e8c51e (diff)
SbkBaseWrapperPrivate renamed to SbkObjectPrivate
Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
Diffstat (limited to 'libshiboken/basewrapper.cpp')
-rw-r--r--libshiboken/basewrapper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libshiboken/basewrapper.cpp b/libshiboken/basewrapper.cpp
index 0e375cfc2..fd9d8deca 100644
--- a/libshiboken/basewrapper.cpp
+++ b/libshiboken/basewrapper.cpp
@@ -250,7 +250,7 @@ PyObject* SbkObjectTypeTpNew(PyTypeObject* metatype, PyObject* args, PyObject* k
PyObject* SbkObjectTpNew(PyTypeObject* subtype, PyObject*, PyObject*)
{
SbkObject* self = reinterpret_cast<SbkObject*>(subtype->tp_alloc(subtype, 0));
- self->d = new SbkBaseWrapperPrivate;
+ self->d = new SbkObjectPrivate;
SbkObjectType* sbkType = reinterpret_cast<SbkObjectType*>(subtype);
int numBases = sbkType->is_multicpp ? Shiboken::getNumberOfCppBaseClasses(subtype) : 1;