From: Robert Roebling Date: Mon, 17 May 1999 19:35:26 +0000 (+0000) Subject: Removed an #ifndef __WXGTK__ X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/1a6ed3711fa1c1032b1761c66067bec5558c9b77 Removed an #ifndef __WXGTK__ git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2492 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/wincmn.cpp b/src/common/wincmn.cpp index ac18d99f86..19d2491282 100644 --- a/src/common/wincmn.cpp +++ b/src/common/wincmn.cpp @@ -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 } } }