diff options
author | George Hazan <george.hazan@gmail.com> | 2012-11-04 20:00:15 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-11-04 20:00:15 +0000 |
commit | a90a30ec3de18405777a992c37dc6dd476465cd8 (patch) | |
tree | a6777cebe105fec742d171af6771955431aed894 /plugins/Clist_modern/src | |
parent | a1e783a12be8a16b780a78f74e0f399bed657d4c (diff) |
code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@2194 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_modern/src')
-rw-r--r-- | plugins/Clist_modern/src/init.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/plugins/Clist_modern/src/init.cpp b/plugins/Clist_modern/src/init.cpp index 646543297a..3ae2e98750 100644 --- a/plugins/Clist_modern/src/init.cpp +++ b/plugins/Clist_modern/src/init.cpp @@ -149,11 +149,7 @@ static HRESULT SubclassClistInterface() {
// get the contact list interface
pcli = ( CLIST_INTERFACE* )CallService(MS_CLIST_RETRIEVE_INTERFACE, 0, (LPARAM)g_hInst);
- if ((INT_PTR)pcli == CALLSERVICE_NOTFOUND || pcli->version < 6 )
- {
- MessageBoxA( NULL, "This version of plugin requires Miranda IM " MINIMAL_COREVERSION_STR " or later", "Fatal error", MB_OK );
- return TRUE;
- }
+
// OVERLOAD CLIST INTERFACE FUNCTIONS
//
// Naming convention is:
|