diff options
author | dartraiden <wowemuh@gmail.com> | 2018-07-25 16:48:36 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2018-07-27 00:32:02 +0300 |
commit | 24cc466028da7e224c12babfbfe425a694052be9 (patch) | |
tree | 694a8d0412b98d3f8cb5da47c86931dea1ccd3da | |
parent | e2899844eb096e826c9d5bba1e338a5fd7928577 (diff) |
TabSRMM: hotkeys correction
-rw-r--r-- | plugins/TabSRMM/res/resource.rc | 4 | ||||
-rw-r--r-- | plugins/TabSRMM/src/msgdialog.cpp | 2 | ||||
-rw-r--r-- | plugins/TabSRMM/src/utils.cpp | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/plugins/TabSRMM/res/resource.rc b/plugins/TabSRMM/res/resource.rc index 589859ba73..23afa44d5c 100644 --- a/plugins/TabSRMM/res/resource.rc +++ b/plugins/TabSRMM/res/resource.rc @@ -776,8 +776,8 @@ BEGIN BEGIN
MENUITEM "Save message log as...", ID_FILE_SAVEMESSAGELOGAS
MENUITEM SEPARATOR
- MENUITEM "Close message session\tCtrl-W", ID_FILE_CLOSEMESSAGESESSION
- MENUITEM "Close container\tAlt-F4", ID_FILE_CLOSE
+ MENUITEM "Close message session\tCtrl+W", ID_FILE_CLOSEMESSAGESESSION
+ MENUITEM "Close container\tAlt+F4", ID_FILE_CLOSE
END
POPUP "&View"
BEGIN
diff --git a/plugins/TabSRMM/src/msgdialog.cpp b/plugins/TabSRMM/src/msgdialog.cpp index 4a585a16cb..5775c807fd 100644 --- a/plugins/TabSRMM/src/msgdialog.cpp +++ b/plugins/TabSRMM/src/msgdialog.cpp @@ -1069,7 +1069,7 @@ void CSrmmWindow::UpdateTitle() void CSrmmWindow::onClick_Ok(CCtrlButton*)
{
if (m_bEditNotesActive) {
- SendMessage(m_hwnd, DM_ACTIVATETOOLTIP, IDC_PIC, (LPARAM)TranslateT("You are editing the user notes. Click the button again or use the hotkey (default: Alt-N) to save the notes and return to normal messaging mode"));
+ SendMessage(m_hwnd, DM_ACTIVATETOOLTIP, IDC_PIC, (LPARAM)TranslateT("You are editing the user notes. Click the button again or use the hotkey (default: Alt+N) to save the notes and return to normal messaging mode"));
return;
}
diff --git a/plugins/TabSRMM/src/utils.cpp b/plugins/TabSRMM/src/utils.cpp index b1bbc3cd48..3a4aa9cb75 100644 --- a/plugins/TabSRMM/src/utils.cpp +++ b/plugins/TabSRMM/src/utils.cpp @@ -1051,7 +1051,7 @@ int _DebugPopup(MCONTACT hContact, const wchar_t *fmt, ...) static wchar_t* warnings[] = {
LPGENW("Important release notes|A test warning message"), /* WARN_TEST */ /* reserved for important notes after upgrade - NOT translatable */
LPGENW("Icon pack version check|The installed icon pack is outdated and might be incompatible with TabSRMM version 3.\n\n\\b1Missing or misplaced icons are possible issues with the currently installed icon pack.\\b0"), /* WARN_ICONPACKVERSION */
- LPGENW("Edit user notes|You are editing the user notes. Click the button again or use the hotkey (default: Alt-N) to save the notes and return to normal messaging mode"), /* WARN_EDITUSERNOTES */
+ LPGENW("Edit user notes|You are editing the user notes. Click the button again or use the hotkey (default: Alt+N) to save the notes and return to normal messaging mode"), /* WARN_EDITUSERNOTES */
LPGENW("Missing component|The icon pack is missing. Please install it to the default icons folder.\n\nNo icons will be available"), /* WARN_ICONPACKMISSING */
LPGENW("Aero peek warning|You have enabled Aero Peek features and loaded a custom container window skin\n\nThis can result in minor visual anomalies in the live preview feature."), /* WARN_AEROPEEKSKIN */
LPGENW("File transfer problem|Sending the image by file transfer failed.\n\nPossible reasons: File transfers not supported, either you or the target contact is offline, or you are invisible and the target contact is not on your visibility list."), /* WARN_IMGSVC_MISSING */
|