]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/framecmn.cpp
wxMotif for OS/2 adjustements. Source cleaning.
[wxWidgets.git] / src / common / framecmn.cpp
index 6127486170f526268ad04af8b959f0d7db163dd7..f8d43448d541058489a7f1931afd71fbe377e169 100644 (file)
 // headers
 // ----------------------------------------------------------------------------
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-    #pragma implementation "framebase.h"
-#endif
-
 // For compilers that support precompilation, includes "wx.h".
 #include "wx/wxprec.h"
 
@@ -205,6 +201,9 @@ bool wxFrameBase::ProcessCommand(int id)
         if (!item->IsEnabled())
             return true;
 
+        if ((item->GetKind() == wxITEM_RADIO) && item->IsChecked() )
+            return true;
+
         if (item->IsCheckable())
         {
             item->Toggle();