1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-09 07:36:48 +02:00

Fix compile

This commit is contained in:
Hugo Lindström
2013-04-16 08:43:15 +02:00
parent ebe9f6fb34
commit 59a30573ee
3 changed files with 3 additions and 3 deletions

View File

@@ -698,7 +698,7 @@ DropJob::handleTrackUrls( const QString& urls )
if ( urls.contains( "xml" ) && urls.contains( "iTunes" ) ) if ( urls.contains( "xml" ) && urls.contains( "iTunes" ) )
{ {
new iTunesLoader( urls, this ); new ItunesLoader( urls, this );
} }
else if ( urls.contains( "itunes.apple.com") ) else if ( urls.contains( "itunes.apple.com") )
{ {

View File

@@ -24,7 +24,7 @@
using namespace Tomahawk; using namespace Tomahawk;
ItunesLoader::ItunesLoader( const QString& input, QObject *parent) ItunesLoader::ItunesLoader( const QString& input, QObject *parent )
: QObject(parent) : QObject(parent)
, m_itunesLibFile( input ) , m_itunesLibFile( input )
{ {

View File

@@ -35,7 +35,7 @@ class DLLEXPORT ItunesLoader : public QObject
Q_OBJECT Q_OBJECT
public: public:
explicit ItunesLoader( const QString& input, QObject* parent = 0 ); explicit ItunesLoader( const QString& input, QObject* parent = 0 );
~iTunesLoader(){} ~ItunesLoader(){}
private: private:
void parseTracks( const QVariantMap& tracks ); void parseTracks( const QVariantMap& tracks );