1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-01-17 22:38:33 +01:00

Fix case for QTSPARKLE_FOUND define.

This commit is contained in:
Patrick von Reth 2015-09-04 15:30:04 +02:00
parent e13f996382
commit d54fc628f7

View File

@ -88,7 +88,7 @@
#include "config.h"
#if defined( Q_OS_WIN )
#if defined ( QtSparkle_FOUND )
#if defined ( QTSPARKLE_FOUND )
#if QT_VERSION < QT_VERSION_CHECK( 5, 0, 0 )
#include <qtsparkle/Updater>
#else
@ -521,7 +521,7 @@ TomahawkWindow::setupUpdateCheck()
#if defined( Q_OS_MAC ) && defined( HAVE_SPARKLE )
connect( ActionCollection::instance()->getAction( "checkForUpdates" ), SIGNAL( triggered( bool ) ),
SLOT( checkForUpdates() ) );
#elif defined( Q_OS_WIN ) && defined( QtSparkle_FOUND )
#elif defined( Q_OS_WIN ) && defined( QTSPARKLE_FOUND )
QUrl updaterUrl;
if ( qApp->arguments().contains( "--debug" ) )