diff options
author | George Hazan <ghazan@miranda.im> | 2022-12-12 18:52:47 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-12-12 18:52:47 +0300 |
commit | f72215dbc4afeaf81fad333eb6de01591637021b (patch) | |
tree | e5f9a471e2b957c4b4d1d7c88777e9c76c4c1f15 /protocols/YAMN/src/proto | |
parent | 4f08da9b494ead16c6cf47d4734d41f32a505f59 (diff) |
YAMN: obsolete settings about acting as protocol removed
Diffstat (limited to 'protocols/YAMN/src/proto')
-rw-r--r-- | protocols/YAMN/src/proto/pop3/pop3opt.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/protocols/YAMN/src/proto/pop3/pop3opt.cpp b/protocols/YAMN/src/proto/pop3/pop3opt.cpp index 78df161e27..011d10fbdf 100644 --- a/protocols/YAMN/src/proto/pop3/pop3opt.cpp +++ b/protocols/YAMN/src/proto/pop3/pop3opt.cpp @@ -151,15 +151,12 @@ struct CGeneralOptDlg : public CBaseOptionsDlg CheckDlgButton(m_hwnd, IDC_LONGDATE, (optDateTime & SHOWDATELONG) ? BST_CHECKED : BST_UNCHECKED); CheckDlgButton(m_hwnd, IDC_SMARTDATE, (optDateTime & SHOWDATENOTODAY) ? BST_CHECKED : BST_UNCHECKED); CheckDlgButton(m_hwnd, IDC_NOSECONDS, (optDateTime & SHOWDATENOSECONDS) ? BST_CHECKED : BST_UNCHECKED); - - CheckDlgButton(m_hwnd, IDC_YAMNASPROTO, g_plugin.getByte(YAMN_SHOWASPROTO, 1) ? BST_CHECKED : BST_UNCHECKED); CheckDlgButton(m_hwnd, IDC_CLOSEONDELETE, g_plugin.getByte(YAMN_CLOSEDELETE, 0) ? BST_CHECKED : BST_UNCHECKED); return true; } bool OnApply() override { - g_plugin.setByte(YAMN_SHOWASPROTO, IsDlgButtonChecked(m_hwnd, IDC_YAMNASPROTO)); g_plugin.setByte(YAMN_CLOSEDELETE, IsDlgButtonChecked(m_hwnd, IDC_CLOSEONDELETE)); g_plugin.setByte(YAMN_TTBFCHECK, IsDlgButtonChecked(m_hwnd, IDC_CHECKTTB)); |