SVN commit 514664 by aumuell: also show notification about tracks remaining to be submitted to last.fm if only tracks from media device are still queued CCBUG: 122561 M +3 -2 scrobbler.cpp --- trunk/extragear/multimedia/amarok/src/scrobbler.cpp #514663:514664 @@ -1033,10 +1033,11 @@ } } - if ( m_submitQueue.count() > 0 ) + if ( m_submitQueue.count() + m_fakeQueue.count() > 0 ) { _long += "

"; - _long += i18n( "One track still in queue", "%n tracks still in queue", m_submitQueue.count() + m_fakeQueue.count() ); + _long += i18n( "One track still in queue", "%n tracks still in queue", + m_submitQueue.count() + m_fakeQueue.count() ); } amaroK::StatusBar::instance()->shortLongMessage( _short, _long );