Fix a typo. Part of an old patch by Carlo Bramini.

See issue #3158 for more details.

svn path=/trunk/; revision=56297
This commit is contained in:
Timo Kreuzer 2012-04-01 10:02:50 +00:00
parent c2d0cdfb0b
commit 7741714b20

View file

@ -107,7 +107,7 @@ QueryDeskCplString(IDataObject *pdo, UINT cfFormat)
#ifdef UNICODE
wcscpy(lpStr, lpRecvBuffer);
#else
WideCharToMultiByte(CP_APC, 0, lpRecvBuffer, -1, lpStr, BufLen, NULL, NULL);
WideCharToMultiByte(CP_ACP, 0, lpRecvBuffer, -1, lpStr, BufLen, NULL, NULL);
#endif
}