summaryrefslogtreecommitdiff
path: root/noncore
authorsimon <simon>2002-12-02 14:34:45 (UTC)
committer simon <simon>2002-12-02 14:34:45 (UTC)
commit77d55b631fa3cf26bfdf809c17ee3252d3c80ac0 (patch) (unidiff)
treec57ab11232df562532ab4672db7309fef8c917d9 /noncore
parent11d12e26459315713b46dbe00a52eef0ce9e4d77 (diff)
downloadopie-77d55b631fa3cf26bfdf809c17ee3252d3c80ac0.zip
opie-77d55b631fa3cf26bfdf809c17ee3252d3c80ac0.tar.gz
opie-77d55b631fa3cf26bfdf809c17ee3252d3c80ac0.tar.bz2
- whichList is deprecated
Diffstat (limited to 'noncore') (more/less context) (show whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/mediaplayer.cpp6
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
@@ -96,5 +96,5 @@ void MediaPlayer::setPlaying( bool play ) {
96 96
97 QString tickerText, time, fileName; 97 QString tickerText, time, fileName;
98 if( playList->whichList() == 0 ) { //check for filelist 98 if( playList->currentTab() == PlayListWidget::CurrentPlayList ) { //check for filelist
99 const DocLnk *playListCurrent = playList->current(); 99 const DocLnk *playListCurrent = playList->current();
100 if ( playListCurrent != NULL ) { 100 if ( playListCurrent != NULL ) {
@@ -148,5 +148,5 @@ void MediaPlayer::setPlaying( bool play ) {
148 148
149void MediaPlayer::prev() { 149void MediaPlayer::prev() {
150 if( playList->whichList() == 0 ) { //if using the playlist 150 if( playList->currentTab() == PlayListWidget::CurrentPlayList ) { //if using the playlist
151 if ( playList->prev() ) { 151 if ( playList->prev() ) {
152 play(); 152 play();
@@ -164,5 +164,5 @@ void MediaPlayer::prev() {
164void MediaPlayer::next() { 164void MediaPlayer::next() {
165 165
166 if(playList->whichList() == 0) { //if using the playlist 166 if(playList->currentTab() == PlayListWidget::CurrentPlayList) { //if using the playlist
167 if ( playList->next() ) { 167 if ( playList->next() ) {
168 play(); 168 play();