From 6b0eb25a146260e8e4a42eef18fcd51ad971e7a0 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sun, 10 Mar 2024 12:07:19 +0300 Subject: code cleaning --- plugins/IEView/src/HTMLBuilder.cpp | 2 +- plugins/NewStory/src/history_array.cpp | 2 +- plugins/TabSRMM/src/msglog.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins') diff --git a/plugins/IEView/src/HTMLBuilder.cpp b/plugins/IEView/src/HTMLBuilder.cpp index 47525671a0..c561a94f74 100644 --- a/plugins/IEView/src/HTMLBuilder.cpp +++ b/plugins/IEView/src/HTMLBuilder.cpp @@ -205,7 +205,7 @@ void HTMLBuilder::appendEventOld(IEView *view, IEVIEWEVENT *event) } if (dbei.eventType == EVENTTYPE_MESSAGE || dbei.eventType == EVENTTYPE_FILE) - dbei.wipeNotify(hDbEvent); + dbei.wipeNotify(); if (!isDbEventShown(dbei)) { hDbEvent = db_event_next(event->hContact, hDbEvent); diff --git a/plugins/NewStory/src/history_array.cpp b/plugins/NewStory/src/history_array.cpp index 81a2477619..6e9aa1f8df 100644 --- a/plugins/NewStory/src/history_array.cpp +++ b/plugins/NewStory/src/history_array.cpp @@ -478,7 +478,7 @@ void ItemData::load(bool bLoadAlways) void ItemData::markRead() { if (!(dbe.flags & DBEF_SENT)) - dbe.wipeNotify(hEvent); + dbe.wipeNotify(); } void ItemData::setText(HWND hwnd) diff --git a/plugins/TabSRMM/src/msglog.cpp b/plugins/TabSRMM/src/msglog.cpp index d2e55696f1..e046d26281 100644 --- a/plugins/TabSRMM/src/msglog.cpp +++ b/plugins/TabSRMM/src/msglog.cpp @@ -571,7 +571,7 @@ bool CLogWindow::CreateRtfEvent(RtfLogStreamData *streamData, DB::EventInfo &dbe BOOL isSent = (dbei.flags & DBEF_SENT); BOOL bIsStatusChangeEvent = IsStatusEvent(dbei.eventType); if (!isSent && bIsStatusChangeEvent) - dbei.wipeNotify(streamData->hDbEvent); + dbei.wipeNotify(); CMStringW msg(ptrW(DbEvent_GetTextW(&dbei))); if (msg.IsEmpty()) -- cgit v1.2.3