X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/243dbf1a5088be31980df51b97831b52cb6986cd..18d491685c8e13a5536f2f9dd6c8041c110a76d9:/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;