1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-09 15:47:38 +02:00

Disable Sync code until I can figure out why clang doesn't like it

This commit is contained in:
Leo Franchi
2012-03-09 22:54:49 -05:00
parent 5c0507323c
commit 538db98e2c
2 changed files with 6 additions and 7 deletions

View File

@@ -1,6 +1,7 @@
/* === This file is part of Tomahawk Player - <http://tomahawk-player.org> === /* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
* *
* Copyright 2010-2011, Leo Franchi <lfranchi@kde.org> * Copyright 2010-2011, Leo Franchi <lfranchi@kde.org>
* Copyright 2010-2011, Hugo Lindström <hugolm84@gmail.com>
* *
* Tomahawk is free software: you can redistribute it and/or modify * Tomahawk is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@@ -88,7 +89,7 @@ SpotifyAccount::icon() const
void void
SpotifyAccount::addPlaylist( const QString &qid, const QString& title, QList< Tomahawk::query_ptr > tracks ) SpotifyAccount::addPlaylist( const QString &qid, const QString& title, QList< Tomahawk::query_ptr > tracks )
{ {
Sync sync; /* Sync sync;
sync.id_ = qid; sync.id_ = qid;
int index = m_syncPlaylists.indexOf( sync ); int index = m_syncPlaylists.indexOf( sync );
@@ -134,15 +135,14 @@ SpotifyAccount::addPlaylist( const QString &qid, const QString& title, QList< To
} }
} }
*/
} }
bool
bool operator==( SpotifyAccount::Sync one, SpotifyAccount::Sync two ) operator==( Tomahawk::Accounts::SpotifyAccount::Sync one, Tomahawk::Accounts::SpotifyAccount::Sync two )
{ {
if( one.id_ == two.id_ ) if( one.id_ == two.id_ )
return true; return true;
return false; return false;
} }

View File

@@ -1,6 +1,7 @@
/* === This file is part of Tomahawk Player - <http://tomahawk-player.org> === /* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
* *
* Copyright 2010-2011, Leo Franchi <lfranchi@kde.org> * Copyright 2010-2011, Leo Franchi <lfranchi@kde.org>
* Copyright 2010-2011, Hugo Lindström <hugolm84@gmail.com>
* *
* Tomahawk is free software: you can redistribute it and/or modify * Tomahawk is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@@ -78,8 +79,6 @@ public:
private: private:
QList<Sync> m_syncPlaylists; QList<Sync> m_syncPlaylists;
int m_sCount;
}; };
} }