]> git.saurik.com Git - wxWidgets.git/blobdiff - src/univ/combobox.cpp
When inserting a new menu don't try to find th eposition of the current one
[wxWidgets.git] / src / univ / combobox.cpp
index 53d2c180fc7685fff7ec97ad2d472069e96834a1..a61d580100093ee92c3012755ae185ffa50405ba 100644 (file)
@@ -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;