diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-12-04 05:26:48 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-12-04 05:26:48 +0000 |
commit | a8cb0320099f9723c89413ca6d2942c6d9dc30c0 (patch) | |
tree | 7f9fc5beea1447469a8d618e5303a3b9e778a5f0 /plugins/AuthState/src/main.cpp | |
parent | 683ffe511660bd92f67117076c3c63f1bf3c3ff0 (diff) |
Translation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@2634 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AuthState/src/main.cpp')
-rw-r--r-- | plugins/AuthState/src/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/AuthState/src/main.cpp b/plugins/AuthState/src/main.cpp index e6b6f4496e..e2a4a07e5c 100644 --- a/plugins/AuthState/src/main.cpp +++ b/plugins/AuthState/src/main.cpp @@ -156,12 +156,12 @@ int onPrebuildContactMenu(WPARAM wParam, LPARAM lParam) if (DBGetContactSettingByte((HANDLE)wParam,"AuthState","ShowIcons",1))
{
mi.flags |= CMIF_TCHAR | CMIM_NAME;
- mi.ptszName = _T("Disable AuthState icons");
+ mi.ptszName = LPGENT("Disable AuthState icons");
}
else
{
mi.flags |= CMIF_TCHAR | CMIM_NAME;
- mi.ptszName = _T("Enable AuthState icons");
+ mi.ptszName = LPGENT("Enable AuthState icons");
}
CallService(MS_CLIST_MODIFYMENUITEM, (WPARAM)hUserMenu, (LPARAM)&mi);
@@ -239,7 +239,7 @@ extern "C" int __declspec(dllexport) Load(void) CLISTMENUITEM mi = { sizeof(mi) };
mi.position = -1999901005;
mi.flags = CMIF_TCHAR;
- mi.ptszName = _T("Enable AuthState icons");
+ mi.ptszName = LPGENT("Enable AuthState icons");
mi.pszService = "AuthState/MenuItem";
hUserMenu = Menu_AddContactMenuItem(&mi);
}
|