projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix missing and broken interface items for Phoenix
[wxWidgets.git]
/
src
/
univ
/
combobox.cpp
diff --git
a/src/univ/combobox.cpp
b/src/univ/combobox.cpp
index 95df6afad42a1d6e3adfbea3269e4ca412501823..0cfcbcdd71bdd17a00901c79f254633e1b55c239 100644
(file)
--- a/
src/univ/combobox.cpp
+++ b/
src/univ/combobox.cpp
@@
-273,12
+273,13
@@
wxComboBox::~wxComboBox()
wxString wxComboBox::DoGetValue() const
{
wxString wxComboBox::DoGetValue() const
{
- return
wxComboCtrl::GetValue
();
+ return
GetTextCtrl() ? GetTextCtrl()->GetValue() : wxString
();
}
void wxComboBox::SetValue(const wxString& value)
{
}
void wxComboBox::SetValue(const wxString& value)
{
- wxComboCtrl::SetValue(value);
+ if ( GetTextCtrl() )
+ GetTextCtrl()->SetValue(value);
}
void wxComboBox::WriteText(const wxString& value)
}
void wxComboBox::WriteText(const wxString& value)