X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a340b80d8a692f5308d26c1c1b95fd689a1d7eb3..87419e97c6f15a9906de69690e7ba59ec0ffd119:/src/univ/combobox.cpp diff --git a/src/univ/combobox.cpp b/src/univ/combobox.cpp index 44d250585a..bda0e3e9fb 100644 --- a/src/univ/combobox.cpp +++ b/src/univ/combobox.cpp @@ -1,6 +1,6 @@ ///////////////////////////////////////////////////////////////////////////// // Name: src/univ/combobox.cpp -// Purpose: wxComboControl and wxComboBox implementation +// Purpose: wxComboBox implementation // Author: Vadim Zeitlin // Modified by: // Created: 15.12.00 @@ -54,7 +54,7 @@ class wxComboListBox : public wxListBox, public wxComboPopup { public: // ctor and dtor - wxComboListBox(wxComboControlBase *combo); + wxComboListBox(); virtual ~wxComboListBox(); // implement wxComboPopup methods @@ -100,9 +100,7 @@ IMPLEMENT_DYNAMIC_CLASS2(wxComboBox, wxControl, wxComboControl) // wxComboListBox // ---------------------------------------------------------------------------- -wxComboListBox::wxComboListBox(wxComboControlBase *combo) - : wxListBox(), - wxComboPopup(combo) +wxComboListBox::wxComboListBox() : wxListBox(), wxComboPopup() { } @@ -136,25 +134,6 @@ void wxComboListBox::SetStringValue(const wxString& value) wxListBox::SetStringSelection(value); else wxListBox::SetSelection(-1); - - /* - // PRE-GLOBAL WXCOMBOCONTROL CODE: - - // FindItem() would just find the current item for an empty string (it - // always matches), but we want to show the first one in such case - if ( value.empty() ) - { - if ( GetCount() > 0 ) - { - wxListBox::SetSelection(0); - } - //else: empty listbox - nothing to do - } - else if ( !FindItem(value) ) - { - // no match att all - } - */ } void wxComboListBox::OnPopup() @@ -259,7 +238,7 @@ bool wxComboBox::Create(wxWindow *parent, return false; } - wxComboListBox *combolbox = new wxComboListBox(this); + wxComboListBox *combolbox = new wxComboListBox(); SetPopupControl(combolbox); m_lbox = combolbox;