Small fixes to wxChoice, wxComboBox and wxListBox

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@644 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1998-09-01 15:41:45 +00:00
parent edaa81ae5d
commit 2f6407b947
9 changed files with 68 additions and 16 deletions

View File

@@ -103,6 +103,11 @@ void wxChoice::Clear(void)
gtk_option_menu_set_menu( GTK_OPTION_MENU(m_widget), menu );
}
void wxChoice::Delete( int WXUNUSED(n) )
{
wxFAIL_MSG( "wxChoice:Delete not implemented" );
}
int wxChoice::FindString( const wxString &string ) const
{
// If you read this code once and you think you understand