X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/065e208ec09e3d08d51d9604497f92f53c210f93..89c831801467203372b6964a785823f19e8063dd:/src/cocoa/radiobox.mm diff --git a/src/cocoa/radiobox.mm b/src/cocoa/radiobox.mm index 6352832477..4dc469c0dd 100644 --- a/src/cocoa/radiobox.mm +++ b/src/cocoa/radiobox.mm @@ -4,12 +4,15 @@ // Author: David Elliott // Modified by: // Created: 2003/02/15 -// RCS-ID: $Id: +// RCS-ID: $Id: // Copyright: (c) 2003 David Elliott -// Licence: wxWidgets licence +// Licence: wxWidgets licence ///////////////////////////////////////////////////////////////////////////// #include "wx/wxprec.h" + +#if wxUSE_RADIOBOX + #ifndef WX_PRECOMP #include "wx/app.h" #include "wx/radiobox.h" @@ -88,23 +91,16 @@ void wxRadioBox::SetString(int n, const wxString& label) } // change the individual radio button state -void wxRadioBox::Enable(int n, bool enable) -{ -} - -void wxRadioBox::Show(int n, bool show) +bool wxRadioBox::Enable(int n, bool enable) { + // TODO + return false; } - // layout parameters -int wxRadioBox::GetColumnCount() const +bool wxRadioBox::Show(int n, bool show) { - return 0; -} - -int wxRadioBox::GetRowCount() const -{ - return 0; + // TODO + return false; } wxSize wxRadioBox::DoGetBestSize() const @@ -112,3 +108,5 @@ wxSize wxRadioBox::DoGetBestSize() const return wxSize(50,50); } +#endif +