diff options
author | George Hazan <ghazan@miranda.im> | 2018-08-30 22:33:33 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-08-30 22:33:33 +0300 |
commit | 452dc9428a541f41542726c4bface33cd9c89df2 (patch) | |
tree | fe616970bf080097e5dd0896d4010b8a2b3fc93e /plugins/TabSRMM/src/msgdialog.cpp | |
parent | ea8ff4711cc342463cdd46e322d216c07ebe2d08 (diff) |
fixes #1561 (TabSRMM warnings)
Diffstat (limited to 'plugins/TabSRMM/src/msgdialog.cpp')
-rw-r--r-- | plugins/TabSRMM/src/msgdialog.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/TabSRMM/src/msgdialog.cpp b/plugins/TabSRMM/src/msgdialog.cpp index 5775c807fd..d502b02685 100644 --- a/plugins/TabSRMM/src/msgdialog.cpp +++ b/plugins/TabSRMM/src/msgdialog.cpp @@ -1527,8 +1527,7 @@ int CSrmmWindow::OnFilter(MSGFILTER *pFilter) SWP_NOMOVE | SWP_NOSIZE | SWP_NOCOPYBITS);
RedrawWindow(m_hwnd, nullptr, nullptr, RDW_INVALIDATE | RDW_ERASE | RDW_UPDATENOW | RDW_ALLCHILDREN);
}
- else
- CWarning::show(CWarning::WARN_NO_SENDLATER, MB_OK | MB_ICONINFORMATION, TranslateT("Configuration issue|The unattended send feature is disabled. The \\b1 send later\\b0 and \\b1 send to multiple contacts\\b0 features depend on it.\n\nYou must enable it under \\b1Options -> Message sessions -> Advanced tweaks\\b0. Changing this option requires a restart."));
+ else CWarning::show(CWarning::WARN_NO_SENDLATER, MB_OK | MB_ICONINFORMATION);
return _dlgReturn(m_hwnd, 1);
case TABSRMM_HK_TOGGLERTL:
m_dwFlags ^= MWF_LOG_RTL;
|