wxWindow::DoSetSize(x, y, width, DoGetBestSize().y, sizeFlags);
}
+#if 0
+// Already defined in include/motif/combobox.h
wxString wxComboBox::GetValue() const
{
char *s = XmComboBoxGetString ((Widget) m_mainWidget);
else
return wxEmptyString;
}
+#endif
void wxComboBox::SetValue(const wxString& value)
{
void wxComboBox::DoDeleteOneItem(unsigned int n)
{
XmComboBoxDeletePos((Widget) m_mainWidget, n+1);
- wxStringList::Node *node = m_stringList.Item(n);
- if (node)
- {
- delete[] node->GetData();
- delete node;
- }
+ m_stringArray.RemoveAt(n);
wxControlWithItems::DoDeleteOneItem(n);
m_noStrings--;
}
-void wxComboBox::DoClear()
+void wxComboBox::Clear()
{
XmComboBoxDeleteAllItems((Widget) m_mainWidget);
m_stringList.Clear();
wxString wxComboBox::GetString(unsigned int n) const
{
- wxStringList::Node *node = m_stringList.Item(n);
- if (node)
- return wxString(node->GetData ());
- else
- return wxEmptyString;
+ return m_stringArray[n];
}
int wxComboBox::FindString(const wxString& s, bool WXUNUSED(bCase)) const