summaryrefslogtreecommitdiff
path: root/plugins/TabSRMM/src/msgdialog.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2020-02-04 15:51:38 +0300
committerGeorge Hazan <ghazan@miranda.im>2020-02-04 15:51:38 +0300
commit5bef9cc96f37de38f9f6388d5eeb42b8ed85edbd (patch)
tree25e935b00140c7fcef99739787078167f07eedf6 /plugins/TabSRMM/src/msgdialog.cpp
parentfdd2e14a948e5dbbf764c8abcaf0e7043020d413 (diff)
fixes #2197 ([0.95.11 x64] IRC: Update broke text transformation shortcuts)
Diffstat (limited to 'plugins/TabSRMM/src/msgdialog.cpp')
-rw-r--r--plugins/TabSRMM/src/msgdialog.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/TabSRMM/src/msgdialog.cpp b/plugins/TabSRMM/src/msgdialog.cpp
index 01931cd794..7da67c41ea 100644
--- a/plugins/TabSRMM/src/msgdialog.cpp
+++ b/plugins/TabSRMM/src/msgdialog.cpp
@@ -599,7 +599,7 @@ bool CMsgDialog::OnInitDialog()
if (m_hContact)
FindFirstEvent();
- DM_OptionsApplied(0, 0);
+ DM_OptionsApplied();
// restore saved msg if any...
if (m_hContact) {
@@ -1474,7 +1474,7 @@ int CMsgDialog::OnFilter(MSGFILTER *pFilter)
db_unset(m_hContact, SRMSGMOD_T, "mwmask");
db_unset(m_hContact, SRMSGMOD_T, "mwflags");
}
- DM_OptionsApplied(0, 0);
+ DM_OptionsApplied();
RemakeLog();
}
return _dlgReturn(m_hwnd, 1);
@@ -2527,7 +2527,7 @@ INT_PTR CMsgDialog::DlgProc(UINT uMsg, WPARAM wParam, LPARAM lParam)
if (isChat())
RedrawLog();
else
- DM_OptionsApplied(0, 0);
+ DM_OptionsApplied();
break;
case WM_NOTIFY:
@@ -2689,7 +2689,7 @@ INT_PTR CMsgDialog::DlgProc(UINT uMsg, WPARAM wParam, LPARAM lParam)
return 0;
case DM_OPTIONSAPPLIED:
- DM_OptionsApplied(wParam, lParam);
+ DM_OptionsApplied(lParam == 0);
return 0;
case DM_UPDATESTATUSMSG: