git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56550
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
return *this;
}
- bool IsKindOf(wxClassInfo *info) const;
+ bool IsKindOf(const wxClassInfo *info) const;
// Turn on the correct set of new and delete operators
// 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 ;
}