diff options
author | Hugo Parente Lima <hugo.pl@gmail.com> | 2010-11-09 17:38:21 -0200 |
---|---|---|
committer | Hugo Parente Lima <hugo.pl@gmail.com> | 2010-11-10 15:36:28 -0200 |
commit | f1ad9bf233f1fe88e72d350caaffc5164ce20511 (patch) | |
tree | 0ac596c230dceeaa61fd71a0a1712f060e16834d /libshiboken/basewrapper_p.h | |
parent | 6280785f538dc033e85826bf2525848c75327ea8 (diff) | |
download | shiboken-f1ad9bf233f1fe88e72d350caaffc5164ce20511.tar.gz shiboken-f1ad9bf233f1fe88e72d350caaffc5164ce20511.tar.xz shiboken-f1ad9bf233f1fe88e72d350caaffc5164ce20511.zip |
Replaced SbkBaseWrapper_setOwnership by getOwnership and releaseOwnership (both inside Shiboken:Wrapper namespace)
Diffstat (limited to 'libshiboken/basewrapper_p.h')
-rw-r--r-- | libshiboken/basewrapper_p.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libshiboken/basewrapper_p.h b/libshiboken/basewrapper_p.h index a07f5482..1a72781d 100644 --- a/libshiboken/basewrapper_p.h +++ b/libshiboken/basewrapper_p.h @@ -35,7 +35,7 @@ namespace Shiboken * This mapping associates a method and argument of an wrapper object with the wrapper of * said argument when it needs the binding to help manage its reference counting. */ -typedef std::map<std::string, std::list<PyObject*> > RefCountMap; +typedef std::map<std::string, std::list<SbkBaseWrapper*> > RefCountMap; /// Linked list of SbkBaseWrapper pointers @@ -86,7 +86,7 @@ namespace Shiboken /** * Utility function uset to transform PyObject which suppot sequence protocol in a std::list **/ -std::list<PyObject*> splitPyObject(PyObject* pyObj); +std::list<SbkBaseWrapper*> splitPyObject(PyObject* pyObj); struct SbkBaseWrapperType; |