adapting for dual implementation native and composited

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27308 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2004-05-16 09:03:38 +00:00
parent 9a159a1da1
commit 46cc7c4e64
2 changed files with 702 additions and 0 deletions

View File

@@ -342,6 +342,11 @@ wxString wxComboBox::GetValue() const
return result;
}
int wxComboBox::GetCount() const
{
return m_choice->GetCount() ;
}
void wxComboBox::SetValue(const wxString& value)
{
int s = FindString (value);