diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-11-20 19:45:54 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-11-20 19:45:54 +0000 |
commit | fc15636d94dd0d90ea4f682235933a5b78390fed (patch) | |
tree | 293ef6c039857a21b1fb9271ae44810bc1a6f2cc /protocols/WhatsApp/src | |
parent | ab51df55fb437b598e3220a088555b231d608786 (diff) |
WART update
git-svn-id: http://svn.miranda-ng.org/main/trunk@6948 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 37e989d834..e715d37a39 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.1.0.exe");
+ ::mir_snwprintf(fileName, SIZEOF(fileName), L"%s\\%s", fileName, L"WART-1.5.4.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.1.0.exe."), _T("WhatsApp"), MB_OK | MB_ICONERROR);
+ ::MessageBox(NULL, TranslateT("Did not unpack registration utility WART-1.5.4.0.exe."), _T("WhatsApp"), MB_OK | MB_ICONERROR);
return 1;
}
|