From 2380b83dfbac557f1938999908fee22029f2e2b3 Mon Sep 17 00:00:00 2001 From: Vadim Dashevskiy Date: Fri, 28 Aug 2015 22:12:35 +0000 Subject: Toaster - warning message on usupported systems fix git-svn-id: http://svn.miranda-ng.org/main/trunk@15075 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Toaster/Toaster.vcxproj | 6 +++++- plugins/Toaster/src/main.cpp | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/plugins/Toaster/Toaster.vcxproj b/plugins/Toaster/Toaster.vcxproj index cb3a8d0753..bb52591c27 100644 --- a/plugins/Toaster/Toaster.vcxproj +++ b/plugins/Toaster/Toaster.vcxproj @@ -49,7 +49,11 @@ - runtimeobject.lib;%(AdditionalDependencies) + delayimp.lib;runtimeobject.lib;%(AdditionalDependencies) + API-MS-WIN-CORE-WINRT-STRING-L1-1-0.DLL;API-MS-WIN-CORE-WINRT-L1-1-0.DLL;%(DelayLoadDLLs) + API-MS-WIN-CORE-WINRT-STRING-L1-1-0.DLL;API-MS-WIN-CORE-WINRT-L1-1-0.DLL;%(DelayLoadDLLs) + API-MS-WIN-CORE-WINRT-STRING-L1-1-0.DLL;API-MS-WIN-CORE-WINRT-L1-1-0.DLL;%(DelayLoadDLLs) + API-MS-WIN-CORE-WINRT-STRING-L1-1-0.DLL;API-MS-WIN-CORE-WINRT-L1-1-0.DLL;%(DelayLoadDLLs) MultiThreadedDebugDLL diff --git a/plugins/Toaster/src/main.cpp b/plugins/Toaster/src/main.cpp index 009c2caea3..15bef82d99 100644 --- a/plugins/Toaster/src/main.cpp +++ b/plugins/Toaster/src/main.cpp @@ -30,7 +30,7 @@ extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD) { if (!IsWinVer8Plus()) { - MessageBox(NULL, TranslateT("This plugin only supports Windows 8 or higher"), _T(MODULE), MB_OK | MB_ICONERROR); + MessageBox(NULL, TranslateT("This plugin requires Windows 8 or higher"), _T(MODULE), MB_OK | MB_ICONERROR); return NULL; } return &pluginInfo; -- cgit v1.2.3