X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7a0079d5a4d1fe6e80cc978d84648fa7bf6fde4a..1780a38b7bc9a9c04d33775a3176fe8516465f50:/src/common/accelcmn.cpp diff --git a/src/common/accelcmn.cpp b/src/common/accelcmn.cpp index ee99542df2..20c07edf32 100644 --- a/src/common/accelcmn.cpp +++ b/src/common/accelcmn.cpp @@ -291,11 +291,11 @@ wxString wxAcceleratorEntry::ToString() const int flags = GetFlags(); if ( flags & wxACCEL_ALT ) - text += _("Alt-"); + text += _("Alt+"); if ( flags & wxACCEL_CTRL ) - text += _("Ctrl-"); + text += _("Ctrl+"); if ( flags & wxACCEL_SHIFT ) - text += _("Shift-"); + text += _("Shift+"); const int code = GetKeyCode();