]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/combobox.cpp
Wait() doesn't cancel the thread any longer
[wxWidgets.git] / src / motif / combobox.cpp
index 61dce03a2b2a5aa22c31cf7e3e7fffe2fa7cdf94..8600650432f81f5144f84b91c10ddb4608483459 100644 (file)
@@ -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;