diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2017-02-12 21:41:48 +0100 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2017-02-12 21:41:48 +0100 |
commit | 646630b565d4fa2d95fd73143198b2d46deb937d (patch) | |
tree | bb290fb1c0bf5a30b2fe5bbf00921bdd5828217d /plugins/Msg_Export/src/FileViewer.cpp | |
parent | a481e280c24cc7595a88f0e3f47058ad094772bd (diff) |
Msg_Export:
- Fixed Copy action
- Added Notepad++ to options dialog predefined editors
- warning fix
Diffstat (limited to 'plugins/Msg_Export/src/FileViewer.cpp')
-rwxr-xr-x | plugins/Msg_Export/src/FileViewer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Msg_Export/src/FileViewer.cpp b/plugins/Msg_Export/src/FileViewer.cpp index f2e7795190..c826b6283a 100755 --- a/plugins/Msg_Export/src/FileViewer.cpp +++ b/plugins/Msg_Export/src/FileViewer.cpp @@ -734,7 +734,7 @@ bool bAdvancedCopy(HWND hwnd) pszCurDec[0] = 0;
GlobalUnlock(hDecMem);
- SetClipboardData(CF_TEXT, hDecMem);
+ SetClipboardData(CF_UNICODETEXT, hDecMem);
delete[] pszSrcBuf;
CloseClipboard();
return true;
|