diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2014-06-03 17:41:45 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2014-06-03 17:41:45 +0000 |
commit | b7c991c686cd440cb8b81745ec587fbf29deb97d (patch) | |
tree | c5d285d2eb29d7db20688531ec312cf14151f206 /plugins/IEView/src/HistoryHTMLBuilder.cpp | |
parent | 74a6e6b40e0254fecee1203fcb6b23a8e2abafcc (diff) |
IEView: Added support for custom database events (e.g. status changes) (fixes #694)
git-svn-id: http://svn.miranda-ng.org/main/trunk@9405 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/IEView/src/HistoryHTMLBuilder.cpp')
-rw-r--r-- | plugins/IEView/src/HistoryHTMLBuilder.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/IEView/src/HistoryHTMLBuilder.cpp b/plugins/IEView/src/HistoryHTMLBuilder.cpp index 93349151da..f7b08ae861 100644 --- a/plugins/IEView/src/HistoryHTMLBuilder.cpp +++ b/plugins/IEView/src/HistoryHTMLBuilder.cpp @@ -73,8 +73,9 @@ bool HistoryHTMLBuilder::isDbEventShown(DBEVENTINFO * dbei) switch (dbei->eventType) {
case EVENTTYPE_MESSAGE:
return 1;
+ default:
+ return Utils::DbEventIsForHistory(dbei);
}
- return 1;
}
char *HistoryHTMLBuilder::timestampToString(DWORD dwFlags, time_t check) {
|