Committing in .

OpenVMS compile issues

 Modified Files:
 	wxWindows/include/wx/vms_x_fix.h
 	wxWindows/samples/image/image.cpp
 	wxWindows/src/generic/descrip.mms
 	wxWindows/src/motif/clipbrd.cpp
 	wxWindows/src/motif/combobox.cpp
 	wxWindows/src/motif/scrolbar.cpp
 ----------------------------------------------------------------------


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21071 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jouk Jansen
2003-06-12 11:28:16 +00:00
parent 4c38c20777
commit c698eae5a8
6 changed files with 342 additions and 197 deletions

View 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;