From: Stefan Csomor Date: Sun, 14 Aug 2011 11:55:36 +0000 (+0000) Subject: using proper cmd constant X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/35f5a520e2e918dc53baa8c65468fc12416ca219 using proper cmd constant git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@68688 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/cmdproc.cpp b/src/common/cmdproc.cpp index 7de08c2790..f59886d0a5 100644 --- a/src/common/cmdproc.cpp +++ b/src/common/cmdproc.cpp @@ -62,8 +62,8 @@ wxCommandProcessor::wxCommandProcessor(int maxCommands) #endif // wxUSE_MENUS #if wxUSE_ACCEL - m_undoAccelerator = '\t' + wxAcceleratorEntry(wxACCEL_CTRL, 'Z').ToString(); - m_redoAccelerator = '\t' + wxAcceleratorEntry(wxACCEL_CTRL, 'Y').ToString(); + m_undoAccelerator = '\t' + wxAcceleratorEntry(wxACCEL_CMD, 'Z').ToString(); + m_redoAccelerator = '\t' + wxAcceleratorEntry(wxACCEL_CMD, 'Y').ToString(); #endif // wxUSE_ACCEL m_lastSavedCommand =