Skip to content
Snippets Groups Projects
Commit a879876b authored by Eike Ziller's avatar Eike Ziller
Browse files

Windows: Fix build


Change-Id: Ia8f13b5234bf192ab138a229668616019fb3faf3
Reviewed-by: default avatarEike Ziller <eike.ziller@nokia.com>
parent 10dadfad
No related branches found
No related tags found
No related merge requests found
...@@ -132,7 +132,8 @@ void Core::Internal::ProgressManagerPrivate::setApplicationLabel(const QString & ...@@ -132,7 +132,8 @@ void Core::Internal::ProgressManagerPrivate::setApplicationLabel(const QString &
// See pixmaputils.cpp in the Windows plugin. // See pixmaputils.cpp in the Windows plugin.
Q_UNIMPLEMENTED(); Q_UNIMPLEMENTED();
#else #else
pITask->SetOverlayIcon(winId, pix.toWinHICON(), (wchar_t*)text.utf16()); const HICON icon = pix.toWinHICON();
pITask->SetOverlayIcon(winId, icon, (wchar_t*)text.utf16());
DestroyIcon(icon); DestroyIcon(icon);
#endif #endif
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment