From c7d065645853b2e614e8557fa01057efaf5e6517 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Mon, 13 May 2024 14:23:13 +0300 Subject: DbEvent_GetTextA: unused function removed --- plugins/TabSRMM/src/msgdialog.cpp | 2 +- plugins/TabSRMM/src/msglog.cpp | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/TabSRMM') diff --git a/plugins/TabSRMM/src/msgdialog.cpp b/plugins/TabSRMM/src/msgdialog.cpp index 7870fced95..dca1013faa 100644 --- a/plugins/TabSRMM/src/msgdialog.cpp +++ b/plugins/TabSRMM/src/msgdialog.cpp @@ -934,7 +934,7 @@ void CMsgDialog::onClick_Quote(CCtrlButton*) if (szQuoted.IsEmpty()) { DB::EventInfo dbei(hDBEvent); if (dbei) - szQuoted = Srmm_Quote(ptrW(DbEvent_GetTextW(&dbei)), iOutputWidth); + szQuoted = Srmm_Quote(ptrW(dbei.getText()), iOutputWidth); } } diff --git a/plugins/TabSRMM/src/msglog.cpp b/plugins/TabSRMM/src/msglog.cpp index 143c55b36f..d3ae86f9cf 100644 --- a/plugins/TabSRMM/src/msglog.cpp +++ b/plugins/TabSRMM/src/msglog.cpp @@ -573,7 +573,7 @@ bool CLogWindow::CreateRtfEvent(RtfLogStreamData *streamData, DB::EventInfo &dbe if (!isSent && bIsStatusChangeEvent) dbei.wipeNotify(); - CMStringW msg(ptrW(DbEvent_GetTextW(&dbei))); + CMStringW msg(ptrW(dbei.getText())); if (msg.IsEmpty()) return false; @@ -981,7 +981,7 @@ bool CLogWindow::CreateRtfEvent(RtfLogStreamData *streamData, DB::EventInfo &dbe if (blob.isOffline()) InsertFileLink(str, streamData->hDbEvent, blob); else - AppendUnicodeToBuffer(str, ptrW(DbEvent_GetTextW(&dbei)), 0); + AppendUnicodeToBuffer(str, ptrW(dbei.getText()), 0); } break; @@ -991,7 +991,7 @@ bool CLogWindow::CreateRtfEvent(RtfLogStreamData *streamData, DB::EventInfo &dbe str.AppendChar(' '); } - ptrW tszText(DbEvent_GetTextW(&dbei)); + ptrW tszText(dbei.getText()); AppendUnicodeToBuffer(str, tszText, 0); } break; -- cgit v1.2.3