diff options
author | George Hazan <ghazan@miranda.im> | 2017-04-07 14:36:22 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-04-07 14:36:22 +0300 |
commit | c46f4344f007d814131d25fa5aec6fdb4c7a049d (patch) | |
tree | 2728e27c52e2e12bcadcf2f5606196229607c7af /plugins/TabSRMM/src/msgdialog.cpp | |
parent | 77f05f77b497b1d69e8107caefd6d19fa9c609ab (diff) |
Windows-specific code moved to mir_core
Diffstat (limited to 'plugins/TabSRMM/src/msgdialog.cpp')
-rw-r--r-- | plugins/TabSRMM/src/msgdialog.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/TabSRMM/src/msgdialog.cpp b/plugins/TabSRMM/src/msgdialog.cpp index 512d30b786..37c09e2782 100644 --- a/plugins/TabSRMM/src/msgdialog.cpp +++ b/plugins/TabSRMM/src/msgdialog.cpp @@ -750,10 +750,9 @@ void CSrmmWindow::OnInitDialog() m_log.SendMsg(EM_SETUNDOLIMIT, 0, 0);
m_log.SendMsg(EM_SETEVENTMASK, 0, ENM_MOUSEEVENTS | ENM_KEYEVENTS | ENM_LINK);
- m_log.SendMsg(EM_SETOLECALLBACK, 0, (LPARAM)&reOleCallback);
m_message.SendMsg(EM_SETEVENTMASK, 0, ENM_REQUESTRESIZE | ENM_MOUSEEVENTS | ENM_SCROLL | ENM_KEYEVENTS | ENM_CHANGE);
- m_message.SendMsg(EM_SETOLECALLBACK, 0, (LPARAM)&reOleCallback2);
+ m_message.SetReadOnly(false);
m_bActualHistory = M.GetByte(m_hContact, "ActualHistory", 0) != 0;
|