]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/menuitem.cpp
EXPORTED an array to quiet the DLL compilation
[wxWidgets.git] / src / msw / menuitem.cpp
index ee2562727e5c6c283de37594be2ae49426a5a640..822bd0bfd62e7bcaf770bd89c35ad75c5a7a89ff 100644 (file)
@@ -140,9 +140,9 @@ void wxMenuItem::DeleteSubMenu()
 // get item state
 // --------------
 
-void wxMenuItem::IsChecked() const
+bool wxMenuItem::IsChecked() const
 {
-    int flag = ::GetMenuState(GetHMenuOf(m_parentMenu), id, MF_BYCOMMAND);
+    int flag = ::GetMenuState(GetHMenuOf(m_parentMenu), GetId(), MF_BYCOMMAND);
 
     // don't "and" with MF_ENABLED because its value is 0
     return (flag & MF_DISABLED) == 0;