aboutsummaryrefslogtreecommitdiffstats
path: root/libshiboken/bindingmanager.cpp
diff options
context:
space:
mode:
authorHugo Lima <hugo.lima@openbossa.org>2010-03-29 18:08:42 -0300
committerHugo Lima <hugo.lima@openbossa.org>2010-03-30 17:41:39 -0300
commit6046687f8f78e1b674e7b4265ce5fb93dce078eb (patch)
tree79a3112183e662212ab5aa553f3a2dcaaedf3f9f /libshiboken/bindingmanager.cpp
parent8af03b6247eb8620ebc91bed8006206a70e24d79 (diff)
Removed "Shibo" prefix from ShiboParent and ShiboChildrenList.
We are under Shiboken namespace, so there is no need for yet another prefix.
Diffstat (limited to 'libshiboken/bindingmanager.cpp')
-rw-r--r--libshiboken/bindingmanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libshiboken/bindingmanager.cpp b/libshiboken/bindingmanager.cpp
index bce8d3656..5d9cb484e 100644
--- a/libshiboken/bindingmanager.cpp
+++ b/libshiboken/bindingmanager.cpp
@@ -173,7 +173,7 @@ void BindingManager::invalidateWrapper(SbkBaseWrapper* wrapper)
SbkBaseWrapper_setOwnership(wrapper, false);
// If it is a parent invalidate all children.
if (SbkBaseWrapper_hasParentInfo(wrapper)) {
- ShiboChildrenList::iterator it = wrapper->parentInfo->children.begin();
+ ChildrenList::iterator it = wrapper->parentInfo->children.begin();
for (; it != wrapper->parentInfo->children.end(); ++it)
invalidateWrapper(*it);
}