-int wxChoice::FindString(const wxString& s) const
-{
- int i = 0;
- for (wxStringList::compatibility_iterator node = m_stringList.GetFirst();
- node; node = node->GetNext ())
- {
- if (s == node->GetData())
- return i;
-
- i++;
- }
-
- return wxNOT_FOUND;
-}
-
-wxString wxChoice::GetString(int n) const