diff options
author | George Hazan <ghazan@miranda.im> | 2023-04-24 12:13:13 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2023-04-24 12:13:13 +0300 |
commit | 0021960123579809c02d4560ae9aee5b26008f52 (patch) | |
tree | 1d76582581cb967574167b0d728c42aeb7a59fd4 /include/m_srmm_int.h | |
parent | ed8bdca0a0b72341faab25040b09c6f28110f127 (diff) |
similar code reduced
Diffstat (limited to 'include/m_srmm_int.h')
-rw-r--r-- | include/m_srmm_int.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/m_srmm_int.h b/include/m_srmm_int.h index f18b2fa4c1..ba7b5aa886 100644 --- a/include/m_srmm_int.h +++ b/include/m_srmm_int.h @@ -194,12 +194,13 @@ public: void StreamRtfEvents(RtfLogStreamData *dat, bool bAppend);
virtual void CreateRtfHeader(RtfLogStreamData *dat) = 0;
virtual bool CreateRtfEvent(RtfLogStreamData *dat, DB::EventInfo &dbei) = 0;
- virtual void CreateRtfTail(RtfLogStreamData *dat);
+ void CreateRtfTail(RtfLogStreamData *dat);
void StreamChatRtfEvents(RtfChatLogStreamData *dat, bool bRedraw);
virtual void CreateChatRtfHeader(RtfChatLogStreamData *dat);
virtual void CreateChatRtfEvent(RtfChatLogStreamData *dat, const struct LOGINFO &lin);
- virtual void CreateChatRtfTail(RtfChatLogStreamData *dat);
+ void CreateChatRtfMessage(RtfChatLogStreamData *dat, const struct LOGINFO &lin, CMStringA &buf);
+ void CreateChatRtfTail(RtfChatLogStreamData *dat);
virtual INT_PTR WndProc(UINT msg, WPARAM wParam, LPARAM lParam);
|