diff options
author | George Hazan <george.hazan@gmail.com> | 2025-01-04 18:05:20 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2025-01-04 18:05:20 +0300 |
commit | a330def54d05bdf090f57829113c0079120e38fb (patch) | |
tree | 9c9db18eae0304e48ab968fffae2c5ed96ed411c /plugins/StopSpamPlus/src/options.cpp | |
parent | a70fd8de566d88a4379dccf3b4080200c975fb44 (diff) |
fixes #3679 completely
Diffstat (limited to 'plugins/StopSpamPlus/src/options.cpp')
-rw-r--r-- | plugins/StopSpamPlus/src/options.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/StopSpamPlus/src/options.cpp b/plugins/StopSpamPlus/src/options.cpp index 0eb3114c39..127288d49a 100644 --- a/plugins/StopSpamPlus/src/options.cpp +++ b/plugins/StopSpamPlus/src/options.cpp @@ -6,7 +6,7 @@ class COptMainDlg : public CDlgBase {
CCtrlEdit edtDescr;
CCtrlSpin spinCount, spinTimeout;
- CCtrlCheck chk1, chk2, chk3, chk4, chk6;
+ CCtrlCheck chk1, chk2, chk4, chk6;
public:
COptMainDlg() :
@@ -16,7 +16,6 @@ public: spinTimeout(this, IDC_SPIN2, 60),
chk1(this, ID_INFTALKPROT),
chk2(this, ID_ADDPERMANENT),
- chk3(this, ID_HANDLEAUTHREQ),
chk4(this, ID_NOTCASESENS),
chk6(this, ID_HISTORY_LOG)
{
@@ -25,7 +24,6 @@ public: CreateLink(chk1, g_plugin.bInfTalkProtection);
CreateLink(chk2, g_plugin.bAddPermanent);
- CreateLink(chk3, g_plugin.bHandleAuthReq);
CreateLink(chk4, g_plugin.bAnswNotCaseSens);
CreateLink(chk6, g_plugin.bHistLog);
}
|