From d7e53c4d5a748d5ef8c934e90dc59ff23c667420 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sun, 26 Dec 2021 15:13:30 +0300 Subject: WCHAR -> wchar_t --- plugins/PasteIt/src/PasteToWeb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/PasteIt') diff --git a/plugins/PasteIt/src/PasteToWeb.cpp b/plugins/PasteIt/src/PasteToWeb.cpp index 536bf8001f..738394efdf 100644 --- a/plugins/PasteIt/src/PasteToWeb.cpp +++ b/plugins/PasteIt/src/PasteToWeb.cpp @@ -259,7 +259,7 @@ void PasteToWeb::FromClipboard() isFile = 1; if (df->fWide) { // Unicode - WCHAR* file = (WCHAR*)((BYTE*)obj + df->pFiles); + wchar_t* file = (wchar_t*)((BYTE*)obj + df->pFiles); size_t len = mir_wstrlen(file); if (*(file + len + 1) == L'\0') { str.append(file, file + len); -- cgit v1.2.3