diff options
author | sss <sss@63852ff1-2cfd-40b9-8011-e561a9d89b1c> | 2009-03-21 18:11:43 +0000 |
---|---|---|
committer | sss <sss@63852ff1-2cfd-40b9-8011-e561a9d89b1c> | 2009-03-21 18:11:43 +0000 |
commit | f4ce855b39be6651819afb94fa239d2e24409c0a (patch) | |
tree | 3eff9036d480d80a561390f24b8c62a02f5d8c64 /stopspam_mod/trunk/stopspam.cpp | |
parent | 9ff26c0dde4f2934ead399a83eae22e3ccb216a8 (diff) |
removed useless option
changed plugin info
git-svn-id: http://172.18.13.13/svn/mim_plugs@15 63852ff1-2cfd-40b9-8011-e561a9d89b1c
Diffstat (limited to 'stopspam_mod/trunk/stopspam.cpp')
-rw-r--r-- | stopspam_mod/trunk/stopspam.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/stopspam_mod/trunk/stopspam.cpp b/stopspam_mod/trunk/stopspam.cpp index bfee2f5..b3fc3d8 100644 --- a/stopspam_mod/trunk/stopspam.cpp +++ b/stopspam_mod/trunk/stopspam.cpp @@ -93,13 +93,13 @@ MIRANDA_HOOK_EVENT(ME_DB_EVENT_FILTER_ADD, w, l) return 0;
}*/
- if(gbDelNotInList)
+/* if(gbDelNotInList)
if(DBGetContactSettingStringPAN_A((HANDLE)w, "CList", "Group", "") == "Not In List")
{
CallService(MS_DB_CONTACT_DELETE, (WPARAM)w, 0);
return 1;
}
-
+*/
if(DBGetContactSettingByte(hContact, pluginName, "Answered", 0))
return 0;
if(DBGetContactSettingByte(hContact, pluginName, "Excluded", 0))
@@ -241,7 +241,7 @@ MIRANDA_HOOK_EVENT(ME_DB_CONTACT_SETTINGCHANGED, w, l) DBCONTACTWRITESETTING * cws = (DBCONTACTWRITESETTING*)l;
// if CList/NotOnList is being deleted then remove answeredSetting
- if(strcmp(cws->szModule, pluginName))
+ if(strcmp(cws->szModule, "CList"))
return 0;
if(strcmp(cws->szSetting, "NotOnList"))
return 0;
|