]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/menu.cpp
Font work.
[wxWidgets.git] / src / motif / menu.cpp
index dbb71ac00c1ce35b7ad73248552e8f1519e875b9..b7e919489318cfd6078436810918831651140307 100644 (file)
@@ -139,10 +139,10 @@ wxMenuItem *wxMenu::DoRemove(wxMenuItem *item)
 
 bool wxMenu::DoInsert(size_t pos, wxMenuItem *item)
 {
-    if ( !wxMenuBase::DoInsert(pos, item) )
-        return FALSE;
+    if ( wxMenuBase::DoInsert(pos, item) )
+        return TRUE;
 
-    wxFAIL_MSG(wxT("not implemented"));
+    wxFAIL_MSG(wxT("DoInsert not implemented; or error in wxMenuBase::DoInsert"));
 
     return FALSE;
 }