From b6b5ce918ed42fe9384c2cfa7dccd105f64c5538 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Mon, 8 Dec 2003 16:38:28 +0000 Subject: [PATCH] Added 'Back' to accelerator possibilities git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@24721 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/menucmn.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/common/menucmn.cpp b/src/common/menucmn.cpp index 30d4b17f8c..83d76e28f6 100644 --- a/src/common/menucmn.cpp +++ b/src/common/menucmn.cpp @@ -168,6 +168,9 @@ wxAcceleratorEntry *wxGetAccelFromString(const wxString& label) else if ( current == wxT("DELETE") ) { keyCode = WXK_DELETE; } + else if ( current == wxT("BACK") ) { + keyCode = WXK_BACK; + } else if ( current == wxT("INS") ) { keyCode = WXK_INSERT; }