diff options
Diffstat (limited to 'protocols/VKontakte/src/vk_thread.cpp')
-rw-r--r-- | protocols/VKontakte/src/vk_thread.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/protocols/VKontakte/src/vk_thread.cpp b/protocols/VKontakte/src/vk_thread.cpp index 01c59856ea..028a7b585b 100644 --- a/protocols/VKontakte/src/vk_thread.cpp +++ b/protocols/VKontakte/src/vk_thread.cpp @@ -655,11 +655,8 @@ void CVkProto::OnReceivePollingInfo(NETLIBHTTPREQUEST *reply, AsyncHttpRequest * INT_PTR __cdecl CVkProto::SvcGetAllServerHistory(WPARAM wParam, LPARAM)
{
- LPCWSTR str = LPGENT("Are you sure to reload all messages from vk.com?\n")
- LPGENT("Local contact history will be deleted and reloaded from the server.\n")
- LPGENT("It may take a long time. \nDo you want to continue?");
- if (IDNO==MessageBox(NULL, str,
- LPGENT("Attention!"), MB_ICONWARNING|MB_YESNO))
+ LPCWSTR str = TranslateT("Are you sure to reload all messages from vk.com?\nLocal contact history will be deleted and reloaded from the server.\nIt may take a long time.\nDo you want to continue?");
+ if (IDNO==MessageBox(NULL, str, TranslateT("Attention!"), MB_ICONWARNING|MB_YESNO))
return 0;
LONG userID = getDword((MCONTACT)wParam, "ID", -1);
|