diff options
author | dartraiden <wowemuh@gmail.com> | 2016-12-10 22:28:27 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2016-12-10 22:29:08 +0300 |
commit | 9a44e2ab5dbcce9fd288c57e56cd4b540f35c372 (patch) | |
tree | 75392bc1853308678c75376d26c2cdc9a90b4a4d /src/core | |
parent | 1606c7d9e84bb5b1db3434ba41738d7fcbdd3dae (diff) |
StdMsg: fix missing space
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/stdmsg/src/msgs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/stdmsg/src/msgs.cpp b/src/core/stdmsg/src/msgs.cpp index 43f1c0fa5c..9cc1c954cd 100644 --- a/src/core/stdmsg/src/msgs.cpp +++ b/src/core/stdmsg/src/msgs.cpp @@ -320,7 +320,7 @@ int RegisterToolbarIcons(WPARAM, LPARAM) bbd.dwButtonID = IDC_BOLD;
bbd.dwDefPos = 10;
bbd.hIcon = GetIconHandle("bold");
- bbd.pwszTooltip = LPGENW("Make the text bold(CTRL + B)");
+ bbd.pwszTooltip = LPGENW("Make the text bold (CTRL+B)");
Srmm_AddButton(&bbd);
bbd.dwButtonID = IDC_ITALICS;
|