change shortcut for "Sort" to Ctrl-T to avoid conflict with another item using Ctrl-S (#9574)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54211 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-06-14 14:06:12 +00:00
parent b45506e8e2
commit d6d9c22365

View File

@@ -235,7 +235,7 @@ MyFrame::MyFrame(const wxChar *title)
menuList->Append(LIST_SHOW_COL_INFO, _T("Show &column info\tCtrl-C")); menuList->Append(LIST_SHOW_COL_INFO, _T("Show &column info\tCtrl-C"));
menuList->Append(LIST_SHOW_SEL_INFO, _T("Show &selected items\tCtrl-S")); menuList->Append(LIST_SHOW_SEL_INFO, _T("Show &selected items\tCtrl-S"));
menuList->AppendSeparator(); menuList->AppendSeparator();
menuList->Append(LIST_SORT, _T("&Sort\tCtrl-S")); menuList->Append(LIST_SORT, _T("Sor&t\tCtrl-T"));
menuList->AppendSeparator(); menuList->AppendSeparator();
menuList->Append(LIST_ADD, _T("&Append an item\tCtrl-P")); menuList->Append(LIST_ADD, _T("&Append an item\tCtrl-P"));
menuList->Append(LIST_EDIT, _T("&Edit the item\tCtrl-E")); menuList->Append(LIST_EDIT, _T("&Edit the item\tCtrl-E"));