summaryrefslogtreecommitdiff
path: root/protocols/IcqOscarJ/src/icqosc_svcs.cpp
diff options
context:
space:
mode:
authorTobias Weimer <wishmaster51@googlemail.com>2013-11-08 20:21:46 +0000
committerTobias Weimer <wishmaster51@googlemail.com>2013-11-08 20:21:46 +0000
commit04fb44b780f18e57abd1afb0a38b845ace114e6b (patch)
tree5328cc5b4a2a2a3295edb5922077c79f94356641 /protocols/IcqOscarJ/src/icqosc_svcs.cpp
parent0829927dddd3277bf0159fac6750d00a84a805c6 (diff)
removed unneeded UTF conversions
git-svn-id: http://svn.miranda-ng.org/main/trunk@6828 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/IcqOscarJ/src/icqosc_svcs.cpp')
-rw-r--r--protocols/IcqOscarJ/src/icqosc_svcs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/IcqOscarJ/src/icqosc_svcs.cpp b/protocols/IcqOscarJ/src/icqosc_svcs.cpp
index 951195c25c..9c71183f02 100644
--- a/protocols/IcqOscarJ/src/icqosc_svcs.cpp
+++ b/protocols/IcqOscarJ/src/icqosc_svcs.cpp
@@ -497,7 +497,7 @@ INT_PTR CIcqProto::RevokeAuthorization(WPARAM wParam, LPARAM lParam)
if (getContactUid((HANDLE)wParam, &dwUin, &szUid))
return 0; // Invalid contact
- if (MessageBoxUtf(NULL, LPGEN("Are you sure you want to revoke user's authorization?\nThis will remove you from his/her list on some clients."), LPGEN("Confirmation"), MB_ICONQUESTION | MB_YESNO) != IDYES)
+ if (MessageBox(NULL, TranslateT("Are you sure you want to revoke user's authorization?\nThis will remove you from his/her list on some clients."), TranslateT("Confirmation"), MB_ICONQUESTION | MB_YESNO) != IDYES)
return 0;
icq_sendRevokeAuthServ(dwUin, szUid);