WINCE: Follow new library naming schema

Change-Id: Iad85e64bf504053e21cad809d2435c1ca239201b
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
bb10
Andreas Holzammer 2013-01-03 15:56:20 +01:00 committed by The Qt Project
parent 4184892665
commit 0cac0796a0
1 changed files with 2 additions and 2 deletions

View File

@ -419,9 +419,9 @@ inline bool isQMLApplication()
{
// check if the QtQuick library is loaded
#ifdef _DEBUG
HMODULE handle = GetModuleHandle(L"QtQuick" QT_LIBINFIX L"d5.dll");
HMODULE handle = GetModuleHandle(L"Qt5Quick" QT_LIBINFIX L"d.dll");
#else
HMODULE handle = GetModuleHandle(L"QtQuick" QT_LIBINFIX L"5.dll");
HMODULE handle = GetModuleHandle(L"Qt5Quick" QT_LIBINFIX L".dll");
#endif
return (handle != NULL);
}