diff options
author | George Hazan <george.hazan@gmail.com> | 2024-09-17 14:28:39 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-09-17 14:28:47 +0300 |
commit | 1fb1cf50e18482006dd86f2a1a47d6be2272de61 (patch) | |
tree | 42d0fa66de3424d2ba03a3c841d101f8435c6a98 /include | |
parent | ddfe88bdb92ee76a8757389e44585bac70f632e5 (diff) |
fixes #4679 (NewStory: кнопка "Цитата" плагина сообщений цитирует не выбранное событие, а последнее)
Diffstat (limited to 'include')
-rw-r--r-- | include/m_srmm_int.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/m_srmm_int.h b/include/m_srmm_int.h index b33980c301..31f5b38ec0 100644 --- a/include/m_srmm_int.h +++ b/include/m_srmm_int.h @@ -133,14 +133,14 @@ public: virtual void Clear() = 0;
virtual int GetType() = 0;
virtual HWND GetHwnd() = 0;
- virtual wchar_t* GetSelection() = 0;
+ virtual wchar_t* GetSelectedText() = 0;
virtual void LogEvents(MEVENT hDbEventFirst, int count, bool bAppend) = 0;
virtual void LogChatEvents(const LOGINFO *lin) = 0;
virtual void Resize() = 0;
virtual void ScrollToBottom() = 0;
virtual void UpdateOptions() {};
- virtual INT_PTR Notify(WPARAM, LPARAM) { return 0; }
+ virtual INT_PTR Notify(WPARAM, LPARAM) { return 0; }
__forceinline CMsgDialog& GetDialog() const
{ return m_pDlg;
@@ -260,7 +260,7 @@ public: bool AtBottom() override;
void Clear() override;
HWND GetHwnd() override;
- wchar_t* GetSelection() override;
+ wchar_t* GetSelectedText() override;
int GetType() override;
void Resize() override;
void ScrollToBottom() override;
|