summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opieplayer2/mediaplayerstate.cpp
Unidiff
Diffstat (limited to 'noncore/multimedia/opieplayer2/mediaplayerstate.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/mediaplayerstate.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/noncore/multimedia/opieplayer2/mediaplayerstate.cpp b/noncore/multimedia/opieplayer2/mediaplayerstate.cpp
index 0d21027..4f43465 100644
--- a/noncore/multimedia/opieplayer2/mediaplayerstate.cpp
+++ b/noncore/multimedia/opieplayer2/mediaplayerstate.cpp
@@ -172,15 +172,15 @@ void MediaPlayerState::setPlaying( bool b ) {
172 return; 172 return;
173 } 173 }
174 playing = b; 174 playing = b;
175 stoped = !b; 175 stopped = !b;
176 emit playingToggled(b); 176 emit playingToggled(b);
177} 177}
178 178
179void MediaPlayerState::setStop( bool b ) { 179void MediaPlayerState::setStopped( bool b ) {
180 if ( stoped == b ) { 180 if ( stopped == b ) {
181 return; 181 return;
182 } 182 }
183 stoped = b; 183 stopped = b;
184 emit stopToggled(b); 184 emit stopToggled(b);
185} 185}
186 186