]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/menucmn.cpp
Missing datetime and the db classes!!
[wxWidgets.git] / src / common / menucmn.cpp
index 74818ae0a9cf99ed226d2e72146a75b0727f9635..ff228f99dc6494a98c715f68e29ae20e95021bd5 100644 (file)
@@ -24,6 +24,8 @@
 // For compilers that support precompilation, includes "wx.h".
 #include "wx/wxprec.h"
 
+#include <ctype.h>
+
 #ifdef __BORLANDC__
     #pragma hdrstop
 #endif
@@ -252,7 +254,7 @@ bool wxMenuBase::DoDestroy(wxMenuItem *item)
 // Finds the item id matching the given string, -1 if not found.
 int wxMenuBase::FindItem(const wxString& text) const
 {
-    wxString label = wxMenuItem(NULL, wxID_SEPARATOR, text).GetLabel();
+    wxString label = wxMenuItem::GetLabelFromText(text);
     for ( wxMenuItemList::Node *node = m_items.GetFirst();
           node;
           node = node->GetNext() )