mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-03-25 02:09:48 +01:00
Fix compile
This commit is contained in:
parent
ebe9f6fb34
commit
59a30573ee
@ -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") )
|
||||
{
|
||||
|
@ -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 )
|
||||
{
|
||||
|
@ -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 );
|
||||
|
Loading…
x
Reference in New Issue
Block a user