-rw-r--r-- | noncore/multimedia/opieplayer2/mediaplayer.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/noncore/multimedia/opieplayer2/mediaplayer.cpp b/noncore/multimedia/opieplayer2/mediaplayer.cpp index 8136ff1..6a38adc 100644 --- a/noncore/multimedia/opieplayer2/mediaplayer.cpp +++ b/noncore/multimedia/opieplayer2/mediaplayer.cpp @@ -97,3 +97,3 @@ void MediaPlayer::setPlaying( bool play ) { QString tickerText, time, fileName; - if( playList->whichList() == 0 ) { //check for filelist + if( playList->currentTab() == PlayListWidget::CurrentPlayList ) { //check for filelist const DocLnk *playListCurrent = playList->current(); @@ -149,3 +149,3 @@ void MediaPlayer::setPlaying( bool play ) { void MediaPlayer::prev() { - if( playList->whichList() == 0 ) { //if using the playlist + if( playList->currentTab() == PlayListWidget::CurrentPlayList ) { //if using the playlist if ( playList->prev() ) { @@ -165,3 +165,3 @@ void MediaPlayer::next() { - if(playList->whichList() == 0) { //if using the playlist + if(playList->currentTab() == PlayListWidget::CurrentPlayList) { //if using the playlist if ( playList->next() ) { |