]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/object.cpp
handle correctly never/always shown scrollbars in GetClientSize()
[wxWidgets.git] / src / common / object.cpp
index 301b6325564299d6666d4b656aa47c5e9f72fc6a..67e60c85510478adf0c99498347ea1c7f25e2407 100644 (file)
@@ -21,6 +21,7 @@
     #include "wx/object.h"
     #include "wx/hash.h"
     #include "wx/memory.h"
+    #include "wx/crt.h"
 #endif
 
 #include <string.h>
@@ -96,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 ;
 }