X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/525d858363f08a3d774b494bd8df19e4ab7c9dc0..819f6fb9f01650b80f72462bd351be45122ef10e:/src/common/object.cpp diff --git a/src/common/object.cpp b/src/common/object.cpp index e6852e8e76..605eb33b43 100644 --- a/src/common/object.cpp +++ b/src/common/object.cpp @@ -81,6 +81,11 @@ wxClassInfo wxObject::ms_classInfo( wxT("wxObject"), 0, 0, wxClassInfo* wxClassInfo::sm_first = NULL; wxHashTable* wxClassInfo::sm_classTable = NULL; +wxClassInfo *wxObject::GetClassInfo() const +{ + return &wxObject::ms_classInfo; +} + // These are here so we can avoid 'always true/false' warnings // by referring to these instead of true/false const bool wxTrue = true;