SetValue is not adding a line if values does not exist

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28831 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2004-08-18 19:00:56 +00:00
parent 78eeb09597
commit 30a936ee4e

View File

@@ -375,12 +375,10 @@ int wxComboBox::GetCount() const
void wxComboBox::SetValue(const wxString& value)
{
int s = FindString (value);
if (s == wxNOT_FOUND && !HasFlag(wxCB_READONLY) )
{
m_choice->Append(value) ;
}
SetStringSelection( value ) ;
if ( HasFlag(wxCB_READONLY) )
SetStringSelection( value ) ;
else
m_text->SetValue( value );
}
// Clipboard operations