-rw-r--r-- | noncore/multimedia/opieplayer2/mediaplayerstate.cpp | 4 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/mediaplayerstate.h | 2 |
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 @@ -140,9 +140,9 @@ void MediaPlayerState::setShuffled( bool b ) { shuffled = b; emit shuffledToggled(b); } -void MediaPlayerState::setPlaylist( bool b ) { +void MediaPlayerState::setUsingPlaylist( bool b ) { if ( usePlaylist == b ) { return; } usePlaylist = b; @@ -253,9 +253,9 @@ void MediaPlayerState::toggleShuffled() { setShuffled( !shuffled); } void MediaPlayerState::togglePlaylist() { - setPlaylist( !usePlaylist); + setUsingPlaylist( !usePlaylist); } void MediaPlayerState::togglePaused() { setPaused( !paused); 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 @@ -70,9 +70,9 @@ public slots: void setFullscreen( bool b ); 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 ); void setPosition( long p ); |