From: Stefan Csomor Date: Wed, 18 Aug 2004 19:00:56 +0000 (+0000) Subject: SetValue is not adding a line if values does not exist X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/30a936ee4eb950b4b1905b6bd09c90d3ec39fa99 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 --- diff --git a/src/mac/carbon/combobox.cpp b/src/mac/carbon/combobox.cpp index f96f194e4e..f18e9ec3fa 100644 --- a/src/mac/carbon/combobox.cpp +++ b/src/mac/carbon/combobox.cpp @@ -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