diff options
author | George Hazan <ghazan@miranda.im> | 2017-05-01 15:40:54 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-05-01 15:40:54 +0300 |
commit | 7e9fed6f96da5954b8e1d65d51c6bb89c552ff16 (patch) | |
tree | efc1957c9a41bc86be34c5d96484933ada7d5b4d | |
parent | 28d98a38c756991d461301efb483e4980a2def69 (diff) |
Scrive: fix for sending long messages
-rw-r--r-- | plugins/Scriver/src/msgdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Scriver/src/msgdialog.cpp b/plugins/Scriver/src/msgdialog.cpp index fb9c8ed2f0..9a92590931 100644 --- a/plugins/Scriver/src/msgdialog.cpp +++ b/plugins/Scriver/src/msgdialog.cpp @@ -442,7 +442,7 @@ void CSrmmWindow::onClick_Ok(CCtrlButton *pButton) msi.flags |= PREF_RTL;
GETTEXTEX gt = { 0 };
- gt.flags = GT_USECRLF;
+ gt.flags = GT_DEFAULT;
gt.cb = bufSize * sizeof(wchar_t);
gt.codepage = 1200; // Unicode
m_message.SendMsg(EM_GETTEXTEX, (WPARAM)>, ptszUnicode);
|