diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-08-28 22:12:35 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-08-28 22:12:35 +0000 |
commit | 2380b83dfbac557f1938999908fee22029f2e2b3 (patch) | |
tree | 1c1d0a01ed6bcf4816e9fdc65aeb37de096fa4d0 /plugins/Toaster/src/main.cpp | |
parent | 13410343d9a3c99d43abe0ab0eef25984172c088 (diff) |
Toaster - warning message on usupported systems fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@15075 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Toaster/src/main.cpp')
-rw-r--r-- | plugins/Toaster/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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;
|