From 03695c2bc4c9eb469bd39119943d2b24bbef4a0a Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Tue, 26 Jun 2012 05:00:26 +0200 Subject: [PATCH] * Set m_finished when tracks are loaded in Artist- & AlbumPlaylistInterface. --- src/libtomahawk/AlbumPlaylistInterface.cpp | 6 ++++-- src/libtomahawk/ArtistPlaylistInterface.cpp | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/libtomahawk/AlbumPlaylistInterface.cpp b/src/libtomahawk/AlbumPlaylistInterface.cpp index 653c93df1..d74af3811 100644 --- a/src/libtomahawk/AlbumPlaylistInterface.cpp +++ b/src/libtomahawk/AlbumPlaylistInterface.cpp @@ -120,7 +120,7 @@ AlbumPlaylistInterface::tracks() DatabaseCommand_AllTracks* cmd = new DatabaseCommand_AllTracks( m_collection ); cmd->setAlbum( m_album ); cmd->setSortOrder( DatabaseCommand_AllTracks::AlbumPosition ); - + connect( cmd, SIGNAL( tracks( QList, QVariant ) ), SLOT( onTracksLoaded( QList ) ) ); @@ -188,7 +188,7 @@ AlbumPlaylistInterface::infoSystemInfo( Tomahawk::InfoSystem::InfoRequestData re cmd->setAlbum( m_album ); //this takes discnumber into account as well cmd->setSortOrder( DatabaseCommand_AllTracks::AlbumPosition ); - + connect( cmd, SIGNAL( tracks( QList, QVariant ) ), SLOT( onTracksLoaded( QList ) ) ); @@ -196,6 +196,7 @@ AlbumPlaylistInterface::infoSystemInfo( Tomahawk::InfoSystem::InfoRequestData re } else { + m_finished = true; emit tracksLoaded( m_mode, m_collection ); } } @@ -212,5 +213,6 @@ AlbumPlaylistInterface::onTracksLoaded( const QList< query_ptr >& tracks ) else m_queries << tracks; + m_finished = true; emit tracksLoaded( m_mode, m_collection ); } diff --git a/src/libtomahawk/ArtistPlaylistInterface.cpp b/src/libtomahawk/ArtistPlaylistInterface.cpp index a91d06aab..977edec2c 100644 --- a/src/libtomahawk/ArtistPlaylistInterface.cpp +++ b/src/libtomahawk/ArtistPlaylistInterface.cpp @@ -118,7 +118,7 @@ ArtistPlaylistInterface::tracks() DatabaseCommand_AllTracks* cmd = new DatabaseCommand_AllTracks( m_collection ); cmd->setArtist( m_artist ); cmd->setSortOrder( DatabaseCommand_AllTracks::AlbumPosition ); - + connect( cmd, SIGNAL( tracks( QList, QVariant ) ), SLOT( onTracksLoaded( QList ) ) ); @@ -186,7 +186,7 @@ ArtistPlaylistInterface::infoSystemInfo( Tomahawk::InfoSystem::InfoRequestData r cmd->setArtist( m_artist ); //this takes discnumber into account as well cmd->setSortOrder( DatabaseCommand_AllTracks::AlbumPosition ); - + connect( cmd, SIGNAL( tracks( QList, QVariant ) ), SLOT( onTracksLoaded( QList ) ) ); @@ -194,6 +194,7 @@ ArtistPlaylistInterface::infoSystemInfo( Tomahawk::InfoSystem::InfoRequestData r } else { + m_finished = true; emit tracksLoaded( m_mode, m_collection ); } } @@ -210,5 +211,6 @@ ArtistPlaylistInterface::onTracksLoaded( const QList< query_ptr >& tracks ) else m_queries << tracks; + m_finished = true; emit tracksLoaded( m_mode, m_collection ); }