diff options
author | George Hazan <george.hazan@gmail.com> | 2023-08-04 18:23:57 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-08-04 18:23:57 +0300 |
commit | 1cbdcde34f1d6fbcdb80317fa16c3dd8131f542f (patch) | |
tree | d438efaae235298c6498ad83bdfdc1cfbdb0cc82 /plugins/Scriver/src/msglog.cpp | |
parent | e215b9e602c3a3e4dd9ee2b9f9d1bb6bad9e4060 (diff) |
for #3530 (Bookmarks)
Diffstat (limited to 'plugins/Scriver/src/msglog.cpp')
-rw-r--r-- | plugins/Scriver/src/msglog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Scriver/src/msglog.cpp b/plugins/Scriver/src/msglog.cpp index 4901a9f1fb..c653e4f93a 100644 --- a/plugins/Scriver/src/msglog.cpp +++ b/plugins/Scriver/src/msglog.cpp @@ -451,7 +451,7 @@ public: switch (dbei.eventType) {
case EVENTTYPE_MESSAGE:
- if (dbei.flags & (DBEF_SECURE | DBEF_SECURE_STRONG))
+ if (dbei.flags & (DBEF_SECURE | DBEF_STRONG))
i = (dbei.flags & DBEF_SECURE) ? LOGICON_MSG_SECURE : LOGICON_MSG_STRONG;
else if (dbei.flags & DBEF_SENT)
i = LOGICON_MSG_OUT;
|