]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/wincmn.cpp
Removed an #ifndef __WXGTK__
[wxWidgets.git] / src / common / wincmn.cpp
index ac18d99f8622d99423063d3d67af5bccfe9f1522..19d24912824e64e26bb80fe9ee6bc8eac16a3cc7 100644 (file)
@@ -1116,14 +1116,11 @@ void wxWindowBase::UpdateWindowUI()
                 if ( event.GetSetChecked() )
                     ((wxCheckBox *)this)->SetValue(event.GetChecked());
             }
-            // TODO No radio buttons in wxGTK yet
-#ifndef __WXGTK__
             else if ( IsKindOf(CLASSINFO(wxRadioButton)) )
             {
                 if ( event.GetSetChecked() )
                     ((wxRadioButton *) this)->SetValue(event.GetChecked());
             }
-#endif // !wxGTK
         }
     }
 }