summaryrefslogtreecommitdiff
path: root/src/core/stdpopup
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/stdpopup')
-rw-r--r--src/core/stdpopup/src/yapp_history_dlg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/stdpopup/src/yapp_history_dlg.cpp b/src/core/stdpopup/src/yapp_history_dlg.cpp
index dc6a5775ad..8b6e1b7506 100644
--- a/src/core/stdpopup/src/yapp_history_dlg.cpp
+++ b/src/core/stdpopup/src/yapp_history_dlg.cpp
@@ -422,7 +422,7 @@ void CopyPopupDataToClipboard(HWND hList, int selection)
if (ListView_GetItemState(hList, i, LVIS_SELECTED)) {
wchar_t buffer[2048]; buffer[0] = '\0';
ListView_GetItemText(hList, i, selection - 100, buffer, _countof(buffer));
- Utils_ClipboardCopy(buffer);
+ Utils_ClipboardCopy(MClipUnicode(buffer));
break;
}
}