Fixed clipboard problem where an ascii format was used instead of unicode.

This commit is contained in:
locka%iol.ie 2001-02-05 11:22:32 +00:00
Родитель d2bb165044
Коммит 505c40cdd1
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -246,7 +246,7 @@ HRESULT STDMETHODCALLTYPE CDropTarget::Drop(/* [unique][in] */ IDataObject __RPC
}
// Does the data object point to a wide character file?
formatetc.cfFormat = g_cfFileName;
formatetc.cfFormat = g_cfFileNameW;
if (m_spDataObject->GetData(&formatetc, &stgmedium) == S_OK)
{
USES_CONVERSION;