diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-06-05 15:39:50 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-06-05 15:39:50 +0000 |
commit | 357af8c5a3cf922818ee014a8f2b54a799917eea (patch) | |
tree | 2ed1b38f979d7b3991f9ca9a4103347f2fddfe62 /plugins/Rate/main.cpp | |
parent | a039e3378554f4f7b12a38722f72dfded2f4b277 (diff) |
removed old PLUGININFO. plugin info cleanup starts
git-svn-id: http://svn.miranda-ng.org/main/trunk@312 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Rate/main.cpp')
-rw-r--r-- | plugins/Rate/main.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/plugins/Rate/main.cpp b/plugins/Rate/main.cpp index e140e33d80..d5a7fcbf71 100644 --- a/plugins/Rate/main.cpp +++ b/plugins/Rate/main.cpp @@ -69,7 +69,7 @@ PLUGININFOEX pluginInfo={ "kostia@ngs.ru",
"© 2006-2009 Kostia Romanov, based on AuthState by Alexander Turyak",
"http://kildor.miranda.im/",
- 0, // is not unicode
+ UNICODE_AWARE, // is not unicode
0, //doesn't replace anything built-in
{0x45230488, 0x977b, 0x405b, {0x85, 0x6d, 0xea, 0x27, 0x6d, 0x70, 0x83, 0xb7}}
/* 45230488-977b-405b-856d-ea276d7083b7 */
@@ -85,12 +85,6 @@ extern "C" BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvRese // плагининфо
extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
{
- if (mirandaVersion < PLUGIN_MAKE_VERSION(0, 8, 0, 29))
- {
- MessageBox( NULL, TranslateT("The plugin requires Miranda IM 0.8.0.29 or later for correct applying its preferences."), TranslateT("Contact` Rate"),
- MB_OK|MB_ICONWARNING|MB_SETFOREGROUND|MB_TOPMOST );
- }
-
return &pluginInfo;
}
|