author | simon <simon> | 2002-12-02 13:48:06 (UTC) |
---|---|---|
committer | simon <simon> | 2002-12-02 13:48:06 (UTC) |
commit | 4a942c5d074cef8a04870cee1ab053f72321fd20 (patch) (side-by-side diff) | |
tree | 135459fe1bd5ada39b9028e70bfc09f6fa6555e5 | |
parent | 58ae980e181b89143760b3893b0f8267cb4489d9 (diff) | |
download | opie-4a942c5d074cef8a04870cee1ab053f72321fd20.zip opie-4a942c5d074cef8a04870cee1ab053f72321fd20.tar.gz opie-4a942c5d074cef8a04870cee1ab053f72321fd20.tar.bz2 |
- two unnecessary if statements removed
-rw-r--r-- | noncore/multimedia/opieplayer2/mediaplayerstate.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/noncore/multimedia/opieplayer2/mediaplayerstate.cpp b/noncore/multimedia/opieplayer2/mediaplayerstate.cpp index 4f43465..5e5dfb2 100644 --- a/noncore/multimedia/opieplayer2/mediaplayerstate.cpp +++ b/noncore/multimedia/opieplayer2/mediaplayerstate.cpp @@ -92,6 +92,2 @@ void MediaPlayerState::writeConfig( Config& cfg ) const { void MediaPlayerState::setIsStreaming( bool b ) { - - if ( streaming == b ) { - return; - } streaming = b; @@ -100,6 +96,2 @@ void MediaPlayerState::setIsStreaming( bool b ) { void MediaPlayerState::setIsSeekable( bool b ) { - - //if ( isSeekable == b ) { - // return; - // } seekable = b; |