diff options
author | George Hazan <george.hazan@gmail.com> | 2014-07-23 19:19:16 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-07-23 19:19:16 +0000 |
commit | 45c2ed059fdbfb2f5e9a9281f2e0538704f17017 (patch) | |
tree | e622fab1c14080e348bcb5a577d2bc10228c2c84 /plugins/Clist_modern/src/modern_clcutils.cpp | |
parent | 4535f8706bbb0844fdddd73e7911606d58b7502d (diff) |
direct access to META_PROTO removed from clist_modern
git-svn-id: http://svn.miranda-ng.org/main/trunk@9928 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_modern/src/modern_clcutils.cpp')
-rw-r--r-- | plugins/Clist_modern/src/modern_clcutils.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Clist_modern/src/modern_clcutils.cpp b/plugins/Clist_modern/src/modern_clcutils.cpp index 4ff3243fd6..b016074032 100644 --- a/plugins/Clist_modern/src/modern_clcutils.cpp +++ b/plugins/Clist_modern/src/modern_clcutils.cpp @@ -453,9 +453,9 @@ int GetDropTargetInformation(HWND hwnd,ClcData *dat,POINT pt) }
dat->selection = hit;
- if (!mir_strcmp(contact->proto, META_PROTO) && ServiceExists(MS_MC_ADDTOMETA))
+ if (!mir_strcmp(contact->proto, META_PROTO))
return DROPTARGET_ONMETACONTACT;
- if (contact->isSubcontact && ServiceExists(MS_MC_ADDTOMETA))
+ if (contact->isSubcontact)
return DROPTARGET_ONSUBCONTACT;
return DROPTARGET_ONCONTACT;
}
|