diff options
author | George Hazan <ghazan@miranda.im> | 2023-04-23 16:34:11 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2023-04-23 16:34:11 +0300 |
commit | 9dbe78ee5c1ee95454d411aabb9ba87bad77fefe (patch) | |
tree | 62812e93700c1ac921cd0727ecf385b999c4ce17 /plugins/StopSpamMod/src/init.cpp | |
parent | 519b59a6aed73060bbe492630cc1820ca3deb83d (diff) |
fixes #3499 (StopSpamMod: удалить настройку "удалять все временные контакты после перезапуска")
Diffstat (limited to 'plugins/StopSpamMod/src/init.cpp')
-rw-r--r-- | plugins/StopSpamMod/src/init.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/StopSpamMod/src/init.cpp b/plugins/StopSpamMod/src/init.cpp index 45323d770b..c989aae78f 100644 --- a/plugins/StopSpamMod/src/init.cpp +++ b/plugins/StopSpamMod/src/init.cpp @@ -33,7 +33,6 @@ BOOL gbHideContacts = 1; BOOL gbIgnoreContacts = 0;
BOOL gbExclude = 1;
BOOL gbDelExcluded = 0;
-BOOL gbDelAllTempory = 0;
BOOL gbHistoryLog = 0;
BOOL gbCaseInsensitive = 0;
BOOL gbRegexMatch = 0;
@@ -98,7 +97,6 @@ void InitVars() gbIgnoreContacts = g_plugin.getByte("IgnoreContacts", 0);
gbExclude = g_plugin.getByte("ExcludeContacts", 1);
gbDelExcluded = g_plugin.getByte("DelExcluded", 0);
- gbDelAllTempory = g_plugin.getByte("DelAllTempory", 0);
gbCaseInsensitive = g_plugin.getByte("CaseInsensitive", 0);
gbRegexMatch = g_plugin.getByte("RegexMatch", 0);
gbInvisDisable = g_plugin.getByte("DisableInInvis", 0);
@@ -118,7 +116,7 @@ static int OnSystemModulesLoaded(WPARAM, LPARAM) gbVarsServiceExist = TRUE;
InitVars();
- if(gbDelAllTempory || gbDelExcluded)
+ if(gbDelExcluded)
mir_forkthread(&CleanThread);
// Folders plugin support
|