From a8cb0320099f9723c89413ca6d2942c6d9dc30c0 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Tue, 4 Dec 2012 05:26:48 +0000 Subject: Translation fix git-svn-id: http://svn.miranda-ng.org/main/trunk@2634 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/AuthState/src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/AuthState') 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); } -- cgit v1.2.3