1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-16 14:01:58 +02:00

* Emit signal when PlayableItem's underlying result changes.

This commit is contained in:
Christian Muehlhaeuser 2012-11-16 07:13:37 +01:00
parent 11483d22ec
commit 20d2302a3c

View File

@ -74,6 +74,9 @@ PlayableItem::PlayableItem( const Tomahawk::result_ptr& result, PlayableItem* pa
, m_result( result )
{
init( parent, row );
connect( result.data(), SIGNAL( updated() ),
SIGNAL( dataChanged() ) );
}