From 59a30573ee10390f3c1024efc5abdfde54c12348 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20Lindstr=C3=B6m?= Date: Tue, 16 Apr 2013 08:43:15 +0200 Subject: [PATCH] Fix compile --- src/libtomahawk/DropJob.cpp | 2 +- src/libtomahawk/utils/ItunesLoader.cpp | 2 +- src/libtomahawk/utils/ItunesLoader.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libtomahawk/DropJob.cpp b/src/libtomahawk/DropJob.cpp index b9e02d958..831afecb6 100644 --- a/src/libtomahawk/DropJob.cpp +++ b/src/libtomahawk/DropJob.cpp @@ -698,7 +698,7 @@ DropJob::handleTrackUrls( const QString& urls ) if ( urls.contains( "xml" ) && urls.contains( "iTunes" ) ) { - new iTunesLoader( urls, this ); + new ItunesLoader( urls, this ); } else if ( urls.contains( "itunes.apple.com") ) { diff --git a/src/libtomahawk/utils/ItunesLoader.cpp b/src/libtomahawk/utils/ItunesLoader.cpp index d4ccfb11f..b8c6beba0 100644 --- a/src/libtomahawk/utils/ItunesLoader.cpp +++ b/src/libtomahawk/utils/ItunesLoader.cpp @@ -24,7 +24,7 @@ using namespace Tomahawk; -ItunesLoader::ItunesLoader( const QString& input, QObject *parent) +ItunesLoader::ItunesLoader( const QString& input, QObject *parent ) : QObject(parent) , m_itunesLibFile( input ) { diff --git a/src/libtomahawk/utils/ItunesLoader.h b/src/libtomahawk/utils/ItunesLoader.h index 195023cf4..113815b65 100644 --- a/src/libtomahawk/utils/ItunesLoader.h +++ b/src/libtomahawk/utils/ItunesLoader.h @@ -35,7 +35,7 @@ class DLLEXPORT ItunesLoader : public QObject Q_OBJECT public: explicit ItunesLoader( const QString& input, QObject* parent = 0 ); - ~iTunesLoader(){} + ~ItunesLoader(){} private: void parseTracks( const QVariantMap& tracks );