X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1169a91932273bc84c23ed9dbd0a2da064d59d66..2659dad3209167f248dcae39a7ee25d2f8c91ff9:/src/univ/combobox.cpp diff --git a/src/univ/combobox.cpp b/src/univ/combobox.cpp index 53d2c180fc..a61d580100 100644 --- a/src/univ/combobox.cpp +++ b/src/univ/combobox.cpp @@ -213,25 +213,6 @@ IMPLEMENT_DYNAMIC_CLASS(wxComboBox, wxControl) // wxComboControl creation // ---------------------------------------------------------------------------- -wxComboControl::wxComboControl() -{ - Init(); -} - -wxComboControl::wxComboControl(wxWindow *parent, - wxWindowID id, - const wxString& value, - const wxPoint& pos, - const wxSize& size, - long style, - const wxValidator& validator, - const wxString& name) -{ - Init(); - - (void)Create(parent, id, value, pos, size, style, validator, name); -} - void wxComboControl::Init() { m_popup = (wxComboPopup *)NULL; @@ -671,28 +652,6 @@ wxSize wxComboListBox::DoGetBestClientSize() const // wxComboBox // ---------------------------------------------------------------------------- -wxComboBox::wxComboBox() -{ - Init(); -} - -wxComboBox::wxComboBox(wxWindow *parent, - wxWindowID id, - const wxString& value, - const wxPoint& pos, - const wxSize& size, - int n, - const wxString *choices, - long style, - const wxValidator& validator, - const wxString& name) -{ - Init(); - - (void)Create(parent, id, value, pos, size, n, choices, - style, validator, name); -} - void wxComboBox::Init() { m_lbox = (wxListBox *)NULL;