1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-07-31 11:20:22 +02:00

* Style fix for DynamicView.

This commit is contained in:
Christian Muehlhaeuser
2012-06-01 02:17:08 +02:00
parent 497c0f01c2
commit b62b9c3531

View File

@@ -71,13 +71,13 @@ DynamicView::~DynamicView()
void
DynamicView::setDynamicModel( DynamicModel* model)
DynamicView::setDynamicModel( DynamicModel* model )
{
m_model = model;
PlaylistView::setPlaylistModel( m_model );
connect( m_model, SIGNAL( trackCountChanged( unsigned int ) ), SLOT( onTrackCountChanged( unsigned int ) ) );
connect( m_model, SIGNAL( checkForOverflow() ), this, SLOT( checkForOverflow() ) );
connect( m_model, SIGNAL( checkForOverflow() ), SLOT( checkForOverflow() ) );
}