1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-05 05:37:29 +02:00

fix style

This commit is contained in:
Leo Franchi
2012-04-27 10:37:16 -04:00
parent b92f7f551e
commit 6d6ca1e94a
2 changed files with 4 additions and 3 deletions

View File

@@ -715,11 +715,12 @@ AudioEngine::setPlaylist( Tomahawk::playlistinterface_ptr playlist )
void void
AudioEngine::setStopAfterTrack(const query_ptr& query) AudioEngine::setStopAfterTrack( const query_ptr& query )
{ {
if ( m_stopAfterTrack != query ) if ( m_stopAfterTrack != query )
{ {
m_stopAfterTrack = query; emit stopAfterTrack_changed(); m_stopAfterTrack = query;
emit stopAfterTrack_changed();
} }
} }