diff options
author | George Hazan <george.hazan@gmail.com> | 2015-05-29 17:32:56 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-05-29 17:32:56 +0000 |
commit | 106ade93d5a6f1051db3e1a3b8a70dda51118137 (patch) | |
tree | df0b85f1c169784b26e618fb743b74685fe45523 /plugins/Scriver/src/input.cpp | |
parent | 024b8c5ae150b43f68c7af37c429c9472c4c2b7e (diff) |
fix for the command history in Scriver
git-svn-id: http://svn.miranda-ng.org/main/trunk@13896 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Scriver/src/input.cpp')
-rw-r--r-- | plugins/Scriver/src/input.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Scriver/src/input.cpp b/plugins/Scriver/src/input.cpp index 69f6691c09..69f9219bf2 100644 --- a/plugins/Scriver/src/input.cpp +++ b/plugins/Scriver/src/input.cpp @@ -230,7 +230,7 @@ int InputAreaShortcuts(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam, Common if (cmdListNew != NULL) {
SendMessage(hwnd, WM_SETREDRAW, FALSE, 0);
- int iLen = SetRichText(hwnd, ptrT(mir_utf8decodeT(cmdListNew->szCmd)));
+ int iLen = SetRichTextRTF(hwnd, cmdListNew->szCmd);
SendMessage(hwnd, EM_SCROLLCARET, 0, 0);
SendMessage(hwnd, WM_SETREDRAW, TRUE, 0);
|