]> git.saurik.com Git - wxWidgets.git/commitdiff
Temp fix for VC6/XTI
authorJulian Smart <julian@anthemion.co.uk>
Wed, 29 Sep 2004 16:21:47 +0000 (16:21 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Wed, 29 Sep 2004 16:21:47 +0000 (16:21 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29543 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/object.h

index 20aa447d2d12797a86ad3713228d6aae0c8095a6..84e258463a1b486bdea61b26241dbf9116b0faf8 100644 (file)
@@ -547,7 +547,11 @@ public:
     // get the runtime identity of this object
     wxClassInfo *GetClassInfo() const
     {
     // get the runtime identity of this object
     wxClassInfo *GetClassInfo() const
     {
+#ifdef _MSC_VER
+        return (wxClassInfo*) m_classInfo;
+#else
         return wx_const_cast(wxClassInfo *, m_classInfo);
         return wx_const_cast(wxClassInfo *, m_classInfo);
+#endif
     }
 
     wxObject* GetSuperClassInstance() const
     }
 
     wxObject* GetSuperClassInstance() const