1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-07-31 19:30:21 +02:00

* Style fixes.

This commit is contained in:
Christian Muehlhaeuser
2013-03-30 13:06:51 +01:00
parent 119f67c8f8
commit 5b59ab56d4
2 changed files with 1 additions and 2 deletions

View File

@@ -657,7 +657,6 @@ Playlist::addEntries( const QList<query_ptr>& queries, const QString& oldrev )
QString newrev = uuid();
createNewRevision( newrev, oldrev, el );
// We are appending at end, so notify listeners.
// PlaylistModel also emits during appends, but since we call
// createNewRevision, it reloads instead of appends.

View File

@@ -441,7 +441,7 @@ LastFmInfoPlugin::notInCacheSlot( QHash<QString, QString> criteria, Tomahawk::In
QMap<QString, QString> args;
args["method"] = criteria["chart_id"];
args["limit"] = "100";
QNetworkReply* reply = lastfm::ws::get(args);
QNetworkReply* reply = lastfm::ws::get( args );
reply->setProperty( "requestData", QVariant::fromValue< Tomahawk::InfoSystem::InfoRequestData >( requestData ) );
connect( reply, SIGNAL( finished() ), SLOT( chartReturned() ) );