summaryrefslogtreecommitdiff
path: root/noncore
authorsimon <simon>2002-12-02 13:48:29 (UTC)
committer simon <simon>2002-12-02 13:48:29 (UTC)
commitcc1324d2def09e55e5a688fa3e2d33924f7f5ef9 (patch) (unidiff)
treecddeae453702467694520720ca56e93c15092465 /noncore
parent4a942c5d074cef8a04870cee1ab053f72321fd20 (diff)
downloadopie-cc1324d2def09e55e5a688fa3e2d33924f7f5ef9.zip
opie-cc1324d2def09e55e5a688fa3e2d33924f7f5ef9.tar.gz
opie-cc1324d2def09e55e5a688fa3e2d33924f7f5ef9.tar.bz2
- setPlaylist -> setUsingPlaylist
Diffstat (limited to 'noncore') (more/less context) (ignore 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 );