From: Vadim Zeitlin Date: Tue, 23 Jan 2001 17:30:22 +0000 (+0000) Subject: fixed FindItem() to work with submenus X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/adb21613bc92fb9a36847cec3ade512dfbde62f2?ds=inline fixed FindItem() to work with submenus git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9151 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/menucmn.cpp b/src/common/menucmn.cpp index fd1cc38a1e..d003b79a66 100644 --- a/src/common/menucmn.cpp +++ b/src/common/menucmn.cpp @@ -266,7 +266,10 @@ int wxMenuBase::FindItem(const wxString& text) const if ( rc != wxNOT_FOUND ) return rc; } - else if ( !item->IsSeparator() ) + + // we execute this code for submenus as well to alllow finding them by + // name just like the ordinary items + if ( !item->IsSeparator() ) { if ( item->GetLabel() == label ) return item->GetId();