diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-06-24 11:58:47 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-06-24 11:58:47 +0000 |
commit | 304b6c128a8c960e47940ffbf0f0fc17b6e559bd (patch) | |
tree | a31987d3d867cd83a78a18588ddd0c1121a11fa3 | |
parent | a0d52658c671798c69699d868f39358779f94850 (diff) |
DBEditorPP: fixed hotkey description
git-svn-id: http://svn.miranda-ng.org/main/trunk@14360 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/DbEditorPP/src/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/DbEditorPP/src/main.cpp b/plugins/DbEditorPP/src/main.cpp index 468e965476..d34cc61906 100644 --- a/plugins/DbEditorPP/src/main.cpp +++ b/plugins/DbEditorPP/src/main.cpp @@ -132,6 +132,7 @@ int ModulesLoaded(WPARAM, LPARAM) // Register hotkeys
_A2T text(modFullname);
HOTKEYDESC hkd = { sizeof(hkd) };
+ hkd.dwFlags = HKD_TCHAR;
hkd.pszName = "hk_dbepp_open";
hkd.pszService = "DBEditorpp/MenuCommand";
hkd.ptszDescription = LPGENT("Open Database Editor");
|