1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-23 17:29:42 +01:00

* Use new ViewPage API in ViewManager.

This commit is contained in:
Christian Muehlhaeuser 2012-07-03 02:50:08 +02:00
parent b8cc0ddbcd
commit c32800c119

View File

@ -566,8 +566,8 @@ ViewManager::setFilter( const QString& filter )
void
ViewManager::applyFilter()
{
if ( currentPlaylistInterface() && currentPlaylistInterface()->filter() != m_filter )
currentPlaylistInterface()->setFilter( m_filter );
if ( m_currentPage )
m_currentPage->setFilter( m_filter );
}
@ -778,14 +778,14 @@ ViewManager::updateView()
connect( currentPlaylistInterface().data(), SIGNAL( shuffleModeChanged( bool ) ),
SIGNAL( shuffleModeChanged( bool ) ) );
m_infobar->setFilter( currentPlaylistInterface()->filter() );
m_infobar->setFilter( currentPage()->filter() );
}
if ( currentPage()->showStatsBar() && currentPlaylistInterface() )
{
emit numTracksChanged( currentPlaylistInterface()->unfilteredTrackCount() );
if ( !currentPlaylistInterface()->filter().isEmpty() )
if ( !currentPage()->filter().isEmpty() )
emit numShownChanged( currentPlaylistInterface()->trackCount() );
else
emit numShownChanged( currentPlaylistInterface()->unfilteredTrackCount() );