/////////////////////////////////////////////////////////////////////////////
-// Name: combobox.cpp
+// Name: src/mac/classic/combobox.cpp
// Purpose: wxComboBox class
// Author: Stefan Csomor
// Modified by:
}
}
-int wxComboBox::FindString(const wxString& s) const
+int wxComboBox::FindString(const wxString& s, bool bCase ) const
{
- return m_choice->FindString( s );
+ return m_choice->FindString( s , bCase );
}
wxString wxComboBox::GetString(int n) const
event.SetString(GetStringSelection());
ProcessCommand(event);
}
-