]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/choice.cpp
Wait() doesn't cancel the thread any longer
[wxWidgets.git] / src / motif / choice.cpp
index d8f2533de4fa76bf9ebd61a8965ba3cd8309aba7..466b14e7e583830cac203b9f806b97e785aff62d 100644 (file)
@@ -209,6 +209,14 @@ int wxChoice::DoAppend(const wxString& item)
     return GetCount() - 1;
 }
 
+int wxChoice::DoInsert(const wxString& item, int pos)
+{
+    wxCHECK_MSG(FALSE, -1, wxT("insert not implemented"));
+
+//    wxCHECK_MSG((pos>=0) && (pos<=GetCount()), -1, wxT("invalid index"));
+//    if (pos == GetCount()) return DoAppend(item);
+}
+
 void wxChoice::Delete(int n)
 {
     Widget w = (Widget)m_widgetArray[n];