mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-04-14 13:01:53 +02:00
move code from AudioEngine header to cpp file
This commit is contained in:
parent
dab5d51952
commit
b92f7f551e
@ -714,6 +714,16 @@ AudioEngine::setPlaylist( Tomahawk::playlistinterface_ptr playlist )
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
AudioEngine::setStopAfterTrack(const query_ptr& query)
|
||||
{
|
||||
if ( m_stopAfterTrack != query )
|
||||
{
|
||||
m_stopAfterTrack = query; emit stopAfterTrack_changed();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
AudioEngine::setCurrentTrack( const Tomahawk::result_ptr& result )
|
||||
{
|
||||
|
@ -96,7 +96,7 @@ public slots:
|
||||
void setPlaylist( Tomahawk::playlistinterface_ptr playlist );
|
||||
void setQueue( Tomahawk::playlistinterface_ptr queue ) { m_queue = queue; }
|
||||
|
||||
void setStopAfterTrack( const Tomahawk::query_ptr& query ) { if ( m_stopAfterTrack != query ) { m_stopAfterTrack = query; emit stopAfterTrack_changed(); } }
|
||||
void setStopAfterTrack( const Tomahawk::query_ptr& query );
|
||||
|
||||
signals:
|
||||
void loading( const Tomahawk::result_ptr& track );
|
||||
|
Loading…
x
Reference in New Issue
Block a user