X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..60104cbafa4502c7592801ccb8507f779c5601cf:/src/common/radiocmn.cpp diff --git a/src/common/radiocmn.cpp b/src/common/radiocmn.cpp index 9f4572fa6e..9c759147e8 100644 --- a/src/common/radiocmn.cpp +++ b/src/common/radiocmn.cpp @@ -34,18 +34,6 @@ // implementation // ============================================================================ -int wxRadioBoxBase::FindString(const wxString& s) const -{ - int count = GetCount(); - for ( int n = 0; n < count; n++ ) - { - if ( GetString(n) == s ) - return n; - } - - return wxNOT_FOUND; -} - int wxRadioBoxBase::GetNextItem(int item, wxDirection dir, long style) const { int count = GetCount(), @@ -156,24 +144,4 @@ void wxRadioBoxBase::SetNumberOfRowsOrCols(int WXUNUSED(n)) #endif // WXWIN_COMPATIBILITY_2_4 -#if WXWIN_COMPATIBILITY_2_2 - -int wxRadioBoxBase::Number() const -{ - return GetCount(); -} - -wxString wxRadioBoxBase::GetLabel(int n) const -{ - return GetString(n); -} - -void wxRadioBoxBase::SetLabel(int n, const wxString& label) -{ - SetString(n, label); -} - -#endif // WXWIN_COMPATIBILITY_2_2 - #endif // wxUSE_RADIOBOX -