aboutsummaryrefslogtreecommitdiffstats
path: root/libshiboken/basewrapper.h
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/basewrapper.h
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/basewrapper.h')
-rw-r--r--libshiboken/basewrapper.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libshiboken/basewrapper.h b/libshiboken/basewrapper.h
index c3fd926d1..b47a5cd50 100644
--- a/libshiboken/basewrapper.h
+++ b/libshiboken/basewrapper.h
@@ -47,17 +47,17 @@ namespace Shiboken
struct SbkBaseWrapper;
/// Linked list of SbkBaseWrapper pointers
-typedef std::list<SbkBaseWrapper*> ShiboChildrenList;
+typedef std::list<SbkBaseWrapper*> ChildrenList;
/// Struct used to store information about object parent and children.
-struct LIBSHIBOKEN_API ShiboParentInfo
+struct LIBSHIBOKEN_API ParentInfo
{
/// Default ctor.
- ShiboParentInfo() : parent(0) {}
+ ParentInfo() : parent(0) {}
/// Pointer to parent object.
SbkBaseWrapper* parent;
/// List of object children.
- ShiboChildrenList children;
+ ChildrenList children;
};
/**
@@ -128,7 +128,7 @@ struct LIBSHIBOKEN_API SbkBaseWrapper
/// Marked as false when the object is lost to C++ and the binding can not know if it was deleted or not.
unsigned int validCppObject : 1;
/// Information about the object parents and children, can be null.
- ShiboParentInfo* parentInfo;
+ ParentInfo* parentInfo;
/// List of weak references
PyObject* weakreflist;
/// Manage reference counting of objects that are referred but not owned.