+ wxChar* copy = new wxChar[wxStrlen(s) + 1];
+ return wxStrcpy(copy, s);
+}
+
+int wxChoice::DoInsert(const wxString& item, unsigned int pos)
+{
+#ifndef XmNpositionIndex
+ wxCHECK_MSG( pos == GetCount(), -1, wxT("insert not implemented"));
+#endif
+ Widget w = XtVaCreateManagedWidget (GetLabelText(item),
+#if wxUSE_GADGETS