]> git.saurik.com Git - wxWidgets.git/commitdiff
make IsKindOf() taking a const wxClassInfo* instead of a wxClassInfo*, just like...
authorFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Tue, 28 Oct 2008 14:54:40 +0000 (14:54 +0000)
committerFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Tue, 28 Oct 2008 14:54:40 +0000 (14:54 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56550 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/object.h
src/common/object.cpp

index 88fe417365aee70c02d62f66afb2fbd6ad8ceafa..da5f418eb66fc00d41c923ec521776aeb6d25dfe 100644 (file)
@@ -534,7 +534,7 @@ public:
         return *this;
     }
 
-    bool IsKindOf(wxClassInfo *info) const;
+    bool IsKindOf(const wxClassInfo *info) const;
 
 
     // Turn on the correct set of new and delete operators
index 247c365f661f2009f3fabf33618bac61831c2601..67e60c85510478adf0c99498347ea1c7f25e2407 100644 (file)
@@ -97,9 +97,9 @@ const bool wxFalse = false;
 // E.g. is wxWindow a kind of wxObject?
 // Go from this class to superclass, taking into account
 // two possible base classes.
-bool wxObject::IsKindOf(wxClassInfo *info) const
+bool wxObject::IsKindOf(const wxClassInfo *info) const
 {
-    wxClassInfo *thisInfo = GetClassInfo();
+    const wxClassInfo *thisInfo = GetClassInfo();
     return (thisInfo) ? thisInfo->IsKindOf(info) : false ;
 }