]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/ownerdrw.cpp
corrected typo in check for icc
[wxWidgets.git] / src / msw / ownerdrw.cpp
index fb83215f336126f2239227c064fa257e427d5736..1931e8c11cdab6410ec9e2f7a722966aaeb21e84 100644 (file)
@@ -9,10 +9,6 @@
 // Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma implementation
-#endif
-
 // For compilers that support precompilation, includes "wx.h".
 #include "wx/wxprec.h"
 #include "wx/msw/private.h"
@@ -170,7 +166,9 @@ wxOwnerDrawn::~wxOwnerDrawn()
 bool wxOwnerDrawn::IsMenuItem() const
 {
     // TODO: in 2.7, replace this with simple "return m_isMenuItem"
-    return gs_menuItems.count(this) == 1;
+
+    // some versions of mingw have problems without const_cast when wxUSE_STL=1
+    return gs_menuItems.count(wx_const_cast(wxOwnerDrawn *, this)) == 1;
 }