diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2014-04-18 08:10:04 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2014-04-18 08:10:04 +0000 |
commit | f190d6032abdaa1f4bce81b2095d9db0c55e41ed (patch) | |
tree | ac5cedf827fa6d89db7c87317b81d7f54c146d53 | |
parent | 667db5c1005ae9e17627134816d22ed6c2eb4a0c (diff) |
translation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@8996 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/MenuItemEx/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MenuItemEx/src/main.cpp b/plugins/MenuItemEx/src/main.cpp index f58e3c2ebe..38d0187e8d 100644 --- a/plugins/MenuItemEx/src/main.cpp +++ b/plugins/MenuItemEx/src/main.cpp @@ -733,7 +733,7 @@ INT_PTR onChangeProto(WPARAM wparam, LPARAM lparam) return 0;
}
if (MessageBox(NULL, (LPCTSTR)TranslateT("Do you want to send authorization request\nto new contact?"),
- TranslateT("Miranda NG"), MB_OKCANCEL | MB_SETFOREGROUND | MB_TOPMOST) == IDOK)
+ _T("Miranda NG"), MB_OKCANCEL | MB_SETFOREGROUND | MB_TOPMOST) == IDOK)
onSendAuthRequest((WPARAM)hContactNew, 0);
|