diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-06-05 20:02:16 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-06-05 20:02:16 +0000 |
commit | 9e97d362c526ddcf8c6ee68891575a7d24918b67 (patch) | |
tree | e757afc82ff393e6394b81a17baec4dd3d7482bf /protocols/FacebookRM | |
parent | 439a7d68a8ff7465e735749068255dfa0c4af5ad (diff) |
mirVersion cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@321 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/FacebookRM')
-rw-r--r-- | protocols/FacebookRM/main.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/protocols/FacebookRM/main.cpp b/protocols/FacebookRM/main.cpp index 3441b6bc98..e12bf8fac9 100644 --- a/protocols/FacebookRM/main.cpp +++ b/protocols/FacebookRM/main.cpp @@ -76,22 +76,6 @@ DWORD WINAPI DllMain(HINSTANCE hInstance,DWORD,LPVOID) extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
{
- if(mirandaVersion > PLUGIN_MAKE_VERSION(0,10,0,0) &&
- mirandaVersion < PLUGIN_MAKE_VERSION(0,10,0,2))
- {
- MessageBox(0,_T("The Facebook protocol plugin cannot be loaded. ")
- _T("It requires Miranda IM 0.10 alpha build #2 or later."),_T("Miranda"),
- MB_OK|MB_ICONWARNING|MB_SETFOREGROUND|MB_TOPMOST);
- return NULL;
- }
- else if(mirandaVersion < PLUGIN_MAKE_VERSION(0,9,43,0))
- {
- MessageBox(0,_T("The Facebook protocol plugin cannot be loaded. ")
- _T("It requires Miranda IM 0.9.43 or later."),_T("Miranda"),
- MB_OK|MB_ICONWARNING|MB_SETFOREGROUND|MB_TOPMOST);
- return NULL;
- }
-
g_mirandaVersion = mirandaVersion;
return &pluginInfo;
}
|