From: Vadim Zeitlin Date: Sat, 14 Jun 2008 14:06:12 +0000 (+0000) Subject: change shortcut for "Sort" to Ctrl-T to avoid conflict with another item using Ctrl... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d6d9c22365d29d3123962536cc8ec5afb8620ebd 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 --- diff --git a/samples/listctrl/listtest.cpp b/samples/listctrl/listtest.cpp index 6d1422e266..27ec7f7bbe 100644 --- a/samples/listctrl/listtest.cpp +++ b/samples/listctrl/listtest.cpp @@ -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_SEL_INFO, _T("Show &selected items\tCtrl-S")); menuList->AppendSeparator(); - menuList->Append(LIST_SORT, _T("&Sort\tCtrl-S")); + menuList->Append(LIST_SORT, _T("Sor&t\tCtrl-T")); menuList->AppendSeparator(); menuList->Append(LIST_ADD, _T("&Append an item\tCtrl-P")); menuList->Append(LIST_EDIT, _T("&Edit the item\tCtrl-E"));