From: Vadim Zeitlin Date: Sat, 10 May 2003 11:43:39 +0000 (+0000) Subject: compilation fix (sorry) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/73baf01ab3ff5bc41772c7f7f988dba34bfdcb92 compilation fix (sorry) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20574 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/menucmn.cpp b/src/common/menucmn.cpp index 5b224a1ddf..ad77746cc9 100644 --- a/src/common/menucmn.cpp +++ b/src/common/menucmn.cpp @@ -183,7 +183,7 @@ wxAcceleratorEntry *wxGetAccelFromString(const wxString& label) keyCode = WXK_SPACE; else if ( current == wxT("TAB") ) keyCode = WXK_TAB; - else if ( current == wxT("ESC") || current == wxT("ESCAPE") ) { + else if ( current == wxT("ESC") || current == wxT("ESCAPE") ) keyCode = WXK_ESCAPE; else {