1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-23 01:09:42 +01:00

Fix windows ifdef

This commit is contained in:
Leo Franchi 2012-05-18 19:36:44 -04:00
parent 5c70221296
commit c9704cbe64

View File

@ -403,9 +403,9 @@ AtticaManager::binaryResolversList( BaseJob* j )
// NOTE: No binary support for linux distros
QString platform;
#ifdef Q_OS_MAC
#if defined(Q_OS_MAC)
platform = "osx";
#elif Q_OS_WIN
#elif defined(Q_OS_WIN)
platform = "win";
#endif