Changed: Compile shortcuts code only under Windows

This commit is contained in:
kervala 2016-05-14 18:48:06 +02:00
parent 17bec77777
commit 66c8269aad

View file

@ -47,6 +47,7 @@ wchar_t* qToWide(const QString &str)
return (wchar_t*)str.utf16();
}
#ifdef Q_OS_WIN32
// CreateLink - Uses the Shell's IShellLink and IPersistFile interfaces
// to create and store a shortcut to the specified object.
@ -180,3 +181,5 @@ HRESULT ResolveIt(HWND hwnd, const QString &linkFile, QString &path)
return hres;
}
#endif