aboutsummaryrefslogtreecommitdiffstats
path: root/libshiboken
diff options
context:
space:
mode:
authorHugo Lima <hugo.lima@openbossa.org>2010-03-29 18:38:09 -0300
committerHugo Lima <hugo.lima@openbossa.org>2010-03-30 17:46:16 -0300
commite111bc2f3398d6855dc5e4309d5e45d85d6aae63 (patch)
tree8d427f7f638fbed73a82b522eb658281f12dcfb1 /libshiboken
parent1ef34b1c56ab65bdc572cac4728dfa3dec5456ca (diff)
SbkBaseWrapper_Dealloc_PrivateDtor renamed to deallocWrapperWithPrivateDtor.
Diffstat (limited to 'libshiboken')
-rw-r--r--libshiboken/basewrapper.cpp2
-rw-r--r--libshiboken/basewrapper.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/libshiboken/basewrapper.cpp b/libshiboken/basewrapper.cpp
index 73caaf28b..a49ec0df4 100644
--- a/libshiboken/basewrapper.cpp
+++ b/libshiboken/basewrapper.cpp
@@ -220,7 +220,7 @@ bool cppObjectIsInvalid(PyObject* wrapper)
return true;
}
-void SbkBaseWrapper_Dealloc_PrivateDtor(PyObject* self)
+void deallocWrapperWithPrivateDtor(PyObject* self)
{
if (((SbkBaseWrapper *)self)->weakreflist)
PyObject_ClearWeakRefs(self);
diff --git a/libshiboken/basewrapper.h b/libshiboken/basewrapper.h
index 814036354..7297f4c34 100644
--- a/libshiboken/basewrapper.h
+++ b/libshiboken/basewrapper.h
@@ -222,7 +222,7 @@ void callCppDestructor(void* cptr)
delete reinterpret_cast<T*>(cptr);
}
-LIBSHIBOKEN_API PyAPI_FUNC(void) SbkBaseWrapper_Dealloc_PrivateDtor(PyObject* self);
+LIBSHIBOKEN_API PyAPI_FUNC(void) deallocWrapperWithPrivateDtor(PyObject* self);
LIBSHIBOKEN_API bool importModule(const char* moduleName, PyTypeObject*** cppApiPtr);
LIBSHIBOKEN_API void setErrorAboutWrongArguments(PyObject* args, const char* funcName, const char** cppOverloads);