diff options
author | George Hazan <ghazan@miranda.im> | 2021-12-11 16:51:29 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-12-11 16:51:29 +0300 |
commit | 78ffd40384ed8a7df3f5bccb3480e7c424bbb90c (patch) | |
tree | 6e9f89121634d7244e58b71bbd970a4dbcb1c100 /plugins/TabSRMM/src/msgdlgother.cpp | |
parent | 0d1988620932dc892064e1423db82358ae0bf744 (diff) |
Fixes #2982:
- status change events are now considered tabSRMM specific and are generated only for tabSRMM embedded log viewer
- code cleaning
Diffstat (limited to 'plugins/TabSRMM/src/msgdlgother.cpp')
-rw-r--r-- | plugins/TabSRMM/src/msgdlgother.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/msgdlgother.cpp b/plugins/TabSRMM/src/msgdlgother.cpp index 36012b25f3..e1e16473fe 100644 --- a/plugins/TabSRMM/src/msgdlgother.cpp +++ b/plugins/TabSRMM/src/msgdlgother.cpp @@ -864,7 +864,7 @@ void CMsgDialog::LoadSplitter() void CMsgDialog::LogEvent(DBEVENTINFO &dbei) { - if (m_iLogMode != 0) { + if (m_iLogMode != WANT_BUILTIN_LOG) { dbei.flags |= DBEF_TEMPORARY; MEVENT hDbEvent = db_event_add(m_hContact, &dbei); |