X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/243dbf1a5088be31980df51b97831b52cb6986cd..1b1ca07a708a2375c3fa6a568c1e29a710d6d56a:/src/motif/combobox.cpp diff --git a/src/motif/combobox.cpp b/src/motif/combobox.cpp index 61dce03a2b..8600650432 100644 --- a/src/motif/combobox.cpp +++ b/src/motif/combobox.cpp @@ -155,7 +155,10 @@ int wxComboBox::DoInsert(const wxString& item, int pos) wxXmString str( item.c_str() ); XmComboBoxAddItem((Widget) m_mainWidget, str(), pos+1); - m_stringList.Insert(pos, item); +#ifndef __VMS + //FIX me for VMS : no intance for insert function to overload + m_stringList.Insert(pos, item); +#endif m_noStrings ++; return pos;