Restore TAB in accelerator string wrong removed by r62791.
See #11512. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62794 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -60,8 +60,8 @@ wxCommandProcessor::wxCommandProcessor(int maxCommands)
|
||||
#if wxUSE_MENUS
|
||||
m_commandEditMenu = NULL;
|
||||
#endif // wxUSE_MENUS
|
||||
m_undoAccelerator = wxAcceleratorEntry(wxACCEL_CTRL, 'Z').ToString();
|
||||
m_redoAccelerator = wxAcceleratorEntry(wxACCEL_CTRL, 'Y').ToString();
|
||||
m_undoAccelerator = '\t' + wxAcceleratorEntry(wxACCEL_CTRL, 'Z').ToString();
|
||||
m_redoAccelerator = '\t' + wxAcceleratorEntry(wxACCEL_CTRL, 'Y').ToString();
|
||||
|
||||
m_lastSavedCommand =
|
||||
m_currentCommand = wxList::compatibility_iterator();
|
||||
|
Reference in New Issue
Block a user