diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-01-20 19:18:05 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-01-20 19:18:05 +0000 |
commit | ff295a8732736a06b1c60dc1e19c1766b6a1e9d8 (patch) | |
tree | e71f91961847422825178c26bc2d28f40785df5a /src | |
parent | a42f2c620125faa6d4664a2da9fa3fce1302cfab (diff) |
- Another portion of _T replacement when it's not needed (from person)
git-svn-id: http://svn.miranda-ng.org/main/trunk@3199 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/clist/keyboard.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/clist/keyboard.cpp b/src/modules/clist/keyboard.cpp index 37fe94b30c..01cea3c4ff 100644 --- a/src/modules/clist/keyboard.cpp +++ b/src/modules/clist/keyboard.cpp @@ -86,14 +86,14 @@ int InitClistHotKeys(void) shk.cbSize = sizeof(shk);
shk.dwFlags = HKD_TCHAR;
- shk.ptszDescription = _T("Show Hide Contact List");
+ shk.ptszDescription = LPGENT("Show Hide Contact List");
shk.pszName = "ShowHide";
shk.ptszSection = _T("Main");
shk.pszService = "CLIST/HK/SHOWHIDE";
shk.DefHotKey = HOTKEYCODE(HOTKEYF_CONTROL|HOTKEYF_SHIFT, 'A');
Hotkey_Register(&shk);
- shk.ptszDescription = _T("Read Message");
+ shk.ptszDescription = LPGENT("Read Message");
shk.pszName = "ReadMessage";
shk.ptszSection = _T("Main");
shk.pszService = "CLIST/HK/Read";
@@ -107,21 +107,21 @@ int InitClistHotKeys(void) shk.DefHotKey = 846;
Hotkey_Register(&shk);
*/
- shk.ptszDescription = _T("Open Options Page");
+ shk.ptszDescription = LPGENT("Open Options Page");
shk.pszName = "ShowOptions";
shk.ptszSection = _T("Main");
shk.pszService = "CLIST/HK/Opts";
shk.DefHotKey = HOTKEYCODE(HOTKEYF_CONTROL|HOTKEYF_SHIFT, 'O') | HKF_MIRANDA_LOCAL;
Hotkey_Register(&shk);
- shk.ptszDescription = _T("Open Logging Options");
+ shk.ptszDescription = LPGENT("Open Logging Options");
shk.pszName = "ShowLogOptions";
shk.ptszSection = _T("Main");
shk.pszService = "Netlib/Log/Win";
shk.DefHotKey = 0;
Hotkey_Register(&shk);
- shk.ptszDescription = _T("Open Find User Dialog");
+ shk.ptszDescription = LPGENT("Open Find User Dialog");
shk.pszName = "FindUsers";
shk.ptszSection = _T("Main");
shk.pszService = "FindAdd/FindAddCommand";
|