summaryrefslogtreecommitdiff
path: root/plugins/Scriver/src/input.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-07-04 19:01:53 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-07-04 19:01:53 +0000
commitbcbd1e68f4383c751ca0b902b7b82f56532d0d4a (patch)
treea88581adb8e054742569b2b6f578f4d7cab36d56 /plugins/Scriver/src/input.cpp
parentccd71119dc7b31670e6060fcdb671fa2a26bc6f9 (diff)
let this bug be damned... I don't know why it fixes it, but it's really so
git-svn-id: http://svn.miranda-ng.org/main/trunk@5235 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Scriver/src/input.cpp')
-rw-r--r--plugins/Scriver/src/input.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Scriver/src/input.cpp b/plugins/Scriver/src/input.cpp
index 184bdc4a3e..a289a2cda9 100644
--- a/plugins/Scriver/src/input.cpp
+++ b/plugins/Scriver/src/input.cpp
@@ -98,10 +98,10 @@ void InputAreaContextMenu(HWND hwnd, WPARAM wParam, LPARAM lParam, HANDLE hConta
SendMessage(hwnd, WM_COPY, 0, 0);
break;
case IDM_PASTE:
- SendMessage(hwnd, EM_PASTESPECIAL, CF_UNICODETEXT, 0);
+ SendMessage(hwnd, EM_PASTESPECIAL, CF_TEXT, 0);
break;
case IDM_PASTESEND:
- SendMessage(hwnd, EM_PASTESPECIAL, CF_UNICODETEXT, 0);
+ SendMessage(hwnd, EM_PASTESPECIAL, CF_TEXT, 0);
PostMessage(GetParent(hwnd), WM_COMMAND, IDOK, 0);
break;
case IDM_DELETE: