diff options
author | George Hazan <ghazan@miranda.im> | 2017-12-14 17:18:10 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-12-14 17:18:10 +0300 |
commit | f19d6ef336adda71f0012fcc3311c6593651f1df (patch) | |
tree | a5f9260db2c84ae2991d5c1c4c25413846a19dc6 /plugins/StopSpamPlus/src/options.cpp | |
parent | ca17ed773e77c2e8fcd410f15902ec10b9cacf2d (diff) |
fix for account settings in StopSpam+
Diffstat (limited to 'plugins/StopSpamPlus/src/options.cpp')
-rw-r--r-- | plugins/StopSpamPlus/src/options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/StopSpamPlus/src/options.cpp b/plugins/StopSpamPlus/src/options.cpp index 342f446cbb..4d041f0264 100644 --- a/plugins/StopSpamPlus/src/options.cpp +++ b/plugins/StopSpamPlus/src/options.cpp @@ -121,7 +121,7 @@ public: item.lParam = (LPARAM)p->szModuleName;
item.pszText = p->tszAccountName;
int idx = m_accounts.InsertItem(&item);
- m_accounts.SetCheckState(idx, !g_sets.ProtoDisabled(p->szModuleName));
+ m_accounts.SetCheckState(idx, g_sets.ProtoDisabled(p->szModuleName));
}
}
|