diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-10-07 19:53:44 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-10-07 19:53:44 +0000 |
commit | eeb8b2901b9a58285929071cac255d8bb565a2f7 (patch) | |
tree | dfec4f06351764a98e8a63d5fa3f41e95bc7e80e /protocols/WhatsApp/src | |
parent | 039ae6e394089780b66d22e4c3c8e303599b0cc4 (diff) |
WART utility update
git-svn-id: http://svn.miranda-ng.org/main/trunk@6400 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/WhatsApp/src')
-rw-r--r-- | protocols/WhatsApp/src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/WhatsApp/src/main.cpp b/protocols/WhatsApp/src/main.cpp index e602ea63e1..37e989d834 100644 --- a/protocols/WhatsApp/src/main.cpp +++ b/protocols/WhatsApp/src/main.cpp @@ -75,7 +75,7 @@ int UnpackRegisterUtility(HINSTANCE hInstance, const wchar_t *profileName) wchar_t *RegisterUtilityPath = ::wcsrchr(fileName, '\\');
if (RegisterUtilityPath != NULL)
*RegisterUtilityPath = 0;
- ::mir_snwprintf(fileName, SIZEOF(fileName), L"%s\\%s", fileName, L"WART-1.5.0.0.exe");
+ ::mir_snwprintf(fileName, SIZEOF(fileName), L"%s\\%s", fileName, L"WART-1.5.1.0.exe");
if ( ::GetFileAttributes(fileName) == DWORD(-1))
{
HRSRC hRes = ::FindResource(hInstance, MAKEINTRESOURCE(IDR_REGISTERUTILITY), L"BIN");
@@ -204,7 +204,7 @@ extern "C" int __declspec(dllexport) Load(void) if ( !UnpackRegisterUtility(g_hInstance, (TCHAR *)profilename))
{
- ::MessageBox(NULL, TranslateT("Did not unpack registration utility WART-1.5.0.0.exe."), _T("WhatsApp"), MB_OK | MB_ICONERROR);
+ ::MessageBox(NULL, TranslateT("Did not unpack registration utility WART-1.5.1.0.exe."), _T("WhatsApp"), MB_OK | MB_ICONERROR);
return 1;
}
|