X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/58045daa7ca94e20095ab7729b3f465bf1661a13..13b4df952c77383f50696e51fcbaa2d8bbd3b3b9:/src/motif/combobox.cpp diff --git a/src/motif/combobox.cpp b/src/motif/combobox.cpp index d3dc7bc1d4..65fcf3f7ac 100644 --- a/src/motif/combobox.cpp +++ b/src/motif/combobox.cpp @@ -38,8 +38,6 @@ void wxComboBoxCallback (Widget w, XtPointer clientData, XmComboBoxSelectionCallbackStruct * cbs); -IMPLEMENT_DYNAMIC_CLASS(wxComboBox, wxControl) - bool wxComboBox::Create(wxWindow *parent, wxWindowID id, const wxString& value, const wxPoint& pos, @@ -53,8 +51,6 @@ bool wxComboBox::Create(wxWindow *parent, wxWindowID id, return false; PreCreation(); - m_noStrings = n; - Widget parentWidget = (Widget) parent->GetClientWidget(); Widget buttonWidget = XtVaCreateManagedWidget(name.c_str(), @@ -72,7 +68,7 @@ bool wxComboBox::Create(wxWindow *parent, wxWindowID id, { wxXmString str( choices[i] ); XmComboBoxAddItem(buttonWidget, str(), 0); - m_stringList.Add(choices[i]); + m_stringArray.Add(choices[i]); } m_mainWidget = (Widget) buttonWidget; @@ -165,9 +161,7 @@ int wxComboBox::DoInsertItems(const wxArrayStringsAdapter& items, { wxXmString str( items[i].c_str() ); XmComboBoxAddItem((Widget) m_mainWidget, str(), GetMotifPosition(pos)); - wxChar* copy = wxStrcpy(new wxChar[items[i].length() + 1], items[i].c_str()); - m_stringList.Insert(pos, copy); - m_noStrings ++; + m_stringArray.Insert(items[i], pos); InsertNewItemClientData(pos, clientData, i, type); } @@ -179,16 +173,14 @@ void wxComboBox::DoDeleteOneItem(unsigned int n) XmComboBoxDeletePos((Widget) m_mainWidget, n+1); m_stringArray.RemoveAt(n); wxControlWithItems::DoDeleteOneItem(n); - m_noStrings--; } void wxComboBox::Clear() { XmComboBoxDeleteAllItems((Widget) m_mainWidget); - m_stringList.Clear(); + m_stringArray.Clear(); wxControlWithItems::DoClear(); - m_noStrings = 0; } void wxComboBox::SetSelection (int n)