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 );