diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2014-06-06 18:32:42 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2014-06-06 18:32:42 +0000 |
commit | f96ab83fc3a69d2bbb6c56e33265a60bf9163add (patch) | |
tree | c33c4bc91006b822c3b07c392647136c01df5419 /plugins/IEView | |
parent | b3cbd75fb723cb396ad49b528e39df0b25c4c3f7 (diff) |
Minor Fixes:
-IEView: Added support for custom database events (e.g. status changes) (fixes #694)
-Scriver: Fixed custom database events (e.g. status changes) (fixes #553)
-PluginUpdater: Added sounds (fixes #695)
-PluginUpdater: Fixed count of updated component (exclusive skipped components) and don't restart if all components are skipped
-PluginUpdater: Fixed memory leak
git-svn-id: http://svn.miranda-ng.org/main/trunk@9414 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/IEView')
-rw-r--r-- | plugins/IEView/src/HTMLBuilder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/IEView/src/HTMLBuilder.cpp b/plugins/IEView/src/HTMLBuilder.cpp index 67bf8f0161..716cb584f3 100644 --- a/plugins/IEView/src/HTMLBuilder.cpp +++ b/plugins/IEView/src/HTMLBuilder.cpp @@ -367,7 +367,7 @@ void HTMLBuilder::appendEventOld(IEView *view, IEVIEWEVENT *event) eventData->pszNickW = getContactName(event->hContact, szProto);
eventData->bIsMe = FALSE;
}
- if (dbei.eventType == EVENTTYPE_MESSAGE || dbei.eventType == EVENTTYPE_URL || dbei.eventType == EVENTTYPE_JABBER_CHATSTATES) {
+ if (dbei.eventType == EVENTTYPE_MESSAGE || dbei.eventType == EVENTTYPE_URL || Utils::DbEventIsForMsgWindow(&dbei)) {
eventData->pszTextW = DbGetEventTextW(&dbei, newEvent.codepage);
if (dbei.eventType == EVENTTYPE_MESSAGE)
eventData->iType = IEED_EVENT_MESSAGE;
|