diff options
author | George Hazan <george.hazan@gmail.com> | 2024-11-09 18:46:43 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-11-09 18:46:43 +0300 |
commit | bb00cb91a13b2afefa650e5f3ae192e00ec5d719 (patch) | |
tree | 063aacc91a03fff6214e1375661362d1f36d10b8 /plugins/Scriver/src/msgs.h | |
parent | bb1c8b0623fbcbf211db948261d58ca9e6712431 (diff) |
there's no need to make FilterWndProc a class member anymore
Diffstat (limited to 'plugins/Scriver/src/msgs.h')
-rw-r--r-- | plugins/Scriver/src/msgs.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/Scriver/src/msgs.h b/plugins/Scriver/src/msgs.h index d98d8709ff..2074447d14 100644 --- a/plugins/Scriver/src/msgs.h +++ b/plugins/Scriver/src/msgs.h @@ -65,8 +65,6 @@ class CMsgDialog : public CSrmmBaseDialog bool IsTypingNotificationSupported(void);
void NotifyTyping(int mode);
- static INT_PTR CALLBACK FilterWndProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
-
bool m_bIncoming = false, m_bWindowCascaded;
MEVENT m_hDbUnreadEventFirst;
@@ -168,6 +166,7 @@ public: }
wchar_t *m_wszInitialText;
+ MWindow m_hwndFilter;
void Reattach(HWND hwndContainer);
};
|