1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-12 09:04:33 +02:00

* Hooking up to resultsChanged() is enough in PlayableItem.

This commit is contained in:
Christian Muehlhaeuser
2012-07-06 06:08:35 +02:00
parent 2004977b09
commit 06c5f2e84b

View File

@@ -89,12 +89,6 @@ PlayableItem::PlayableItem( const Tomahawk::query_ptr& query, PlayableItem* pare
connect( query.data(), SIGNAL( updated() ),
SIGNAL( dataChanged() ) );
connect( query.data(), SIGNAL( resultsAdded( QList<Tomahawk::result_ptr> ) ),
SLOT( onResultsChanged() ) );
connect( query.data(), SIGNAL( resultsRemoved( Tomahawk::result_ptr ) ),
SLOT( onResultsChanged() ) );
connect( query.data(), SIGNAL( resultsChanged() ),
SLOT( onResultsChanged() ) );
}
@@ -113,12 +107,6 @@ PlayableItem::PlayableItem( const Tomahawk::plentry_ptr& entry, PlayableItem* pa
connect( m_query.data(), SIGNAL( updated() ),
SIGNAL( dataChanged() ) );
connect( m_query.data(), SIGNAL( resultsAdded( QList<Tomahawk::result_ptr> ) ),
SLOT( onResultsChanged() ) );
connect( m_query.data(), SIGNAL( resultsRemoved( Tomahawk::result_ptr ) ),
SLOT( onResultsChanged() ) );
connect( m_query.data(), SIGNAL( resultsChanged() ),
SLOT( onResultsChanged() ) );
}
@@ -130,7 +118,7 @@ PlayableItem::init( PlayableItem* parent, int row )
m_fetchingMore = false;
m_isPlaying = false;
m_parent = parent;
if ( parent )
{
if ( row < 0 )
@@ -145,7 +133,7 @@ PlayableItem::init( PlayableItem* parent, int row )
this->model = parent->model;
}
if ( !m_query.isNull() )
{
onResultsChanged();