aboutsummaryrefslogtreecommitdiffstats
path: root/libshiboken/basewrapper.cpp
diff options
context:
space:
mode:
authorMarcelo Lira <marcelo.lira@openbossa.org>2009-12-22 19:15:36 -0300
committerMarcelo Lira <marcelo.lira@openbossa.org>2009-12-22 19:15:36 -0300
commitb06e2adc558688f0788f998ab51e6afb08895150 (patch)
tree30fd31eec57d975c0f120a17c3a34b846d7d4456 /libshiboken/basewrapper.cpp
parent4f6d31013a2c01faf66d8581c4d21465ccc66f7c (diff)
Changed SbkBaseWrapper_New signature to use "bool" instead of "unsigned int" in some parameters.
Diffstat (limited to 'libshiboken/basewrapper.cpp')
-rw-r--r--libshiboken/basewrapper.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libshiboken/basewrapper.cpp b/libshiboken/basewrapper.cpp
index eb7ee2b5d..10c82d19d 100644
--- a/libshiboken/basewrapper.cpp
+++ b/libshiboken/basewrapper.cpp
@@ -107,8 +107,8 @@ void destroyParentInfo(SbkBaseWrapper* obj, bool removeFromParent)
PyObject* SbkBaseWrapper_New(SbkBaseWrapperType* instanceType,
const void* cptr,
- unsigned int hasOwnership,
- unsigned int containsCppWrapper)
+ bool hasOwnership,
+ bool containsCppWrapper)
{
static PyObject* zeroargs = 0;
if (!cptr)