summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opieplayer2
Unidiff
Diffstat (limited to 'noncore/multimedia/opieplayer2') (more/less context) (show whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/mediaplayerstate.cpp4
-rw-r--r--noncore/multimedia/opieplayer2/mediaplayerstate.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/noncore/multimedia/opieplayer2/mediaplayerstate.cpp b/noncore/multimedia/opieplayer2/mediaplayerstate.cpp
index 5e5dfb2..aa85176 100644
--- a/noncore/multimedia/opieplayer2/mediaplayerstate.cpp
+++ b/noncore/multimedia/opieplayer2/mediaplayerstate.cpp
@@ -141,7 +141,7 @@ void MediaPlayerState::setShuffled( bool b ) {
141 emit shuffledToggled(b); 141 emit shuffledToggled(b);
142} 142}
143 143
144void MediaPlayerState::setPlaylist( bool b ) { 144void MediaPlayerState::setUsingPlaylist( bool b ) {
145 if ( usePlaylist == b ) { 145 if ( usePlaylist == b ) {
146 return; 146 return;
147 } 147 }
@@ -254,7 +254,7 @@ void MediaPlayerState::toggleShuffled() {
254} 254}
255 255
256void MediaPlayerState::togglePlaylist() { 256void MediaPlayerState::togglePlaylist() {
257 setPlaylist( !usePlaylist); 257 setUsingPlaylist( !usePlaylist);
258} 258}
259 259
260void MediaPlayerState::togglePaused() { 260void MediaPlayerState::togglePaused() {
diff --git a/noncore/multimedia/opieplayer2/mediaplayerstate.h b/noncore/multimedia/opieplayer2/mediaplayerstate.h
index 04d0445..b99178d 100644
--- a/noncore/multimedia/opieplayer2/mediaplayerstate.h
+++ b/noncore/multimedia/opieplayer2/mediaplayerstate.h
@@ -71,7 +71,7 @@ public slots:
71 void setScaled( bool b ); 71 void setScaled( bool b );
72 void setLooping( bool b ); 72 void setLooping( bool b );
73 void setShuffled( bool b ); 73 void setShuffled( bool b );
74 void setPlaylist( bool b ); 74 void setUsingPlaylist( bool b );
75 void setPaused( bool b ); 75 void setPaused( bool b );
76 void setPlaying( bool b ); 76 void setPlaying( bool b );
77 void setStopped( bool b ); 77 void setStopped( bool b );