summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opieplayer2
Side-by-side diff
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 ) {
emit shuffledToggled(b);
}
-void MediaPlayerState::setPlaylist( bool b ) {
+void MediaPlayerState::setUsingPlaylist( bool b ) {
if ( usePlaylist == b ) {
return;
}
@@ -254,7 +254,7 @@ void MediaPlayerState::toggleShuffled() {
}
void MediaPlayerState::togglePlaylist() {
- setPlaylist( !usePlaylist);
+ setUsingPlaylist( !usePlaylist);
}
void 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:
void setScaled( bool b );
void setLooping( bool b );
void setShuffled( bool b );
- void setPlaylist( bool b );
+ void setUsingPlaylist( bool b );
void setPaused( bool b );
void setPlaying( bool b );
void setStopped( bool b );