-rw-r--r-- | core/multimedia/opieplayer/mediaplayer.cpp | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/core/multimedia/opieplayer/mediaplayer.cpp b/core/multimedia/opieplayer/mediaplayer.cpp index c971a3c..7ef3e6a 100644 --- a/core/multimedia/opieplayer/mediaplayer.cpp +++ b/core/multimedia/opieplayer/mediaplayer.cpp @@ -98,5 +98,6 @@ void MediaPlayer::setPlaying( bool play ) { return; } - if ( !QFile::exists( currentFile->file() ) ) { + + if ( ((currentFile->file()).left(4) != "http") && !QFile::exists( currentFile->file() ) ) { QMessageBox::critical( 0, tr( "File not found"), tr( "The following file was not found: <i>" ) + currentFile->file() + "</i>" ); mediaPlayerState->setPlaying( FALSE ); @@ -135,5 +136,5 @@ void MediaPlayer::prev() { if ( playList->last() ) play(); - } else + } else mediaPlayerState->setList(); } @@ -141,6 +142,6 @@ void MediaPlayer::prev() { void MediaPlayer::next() { - if ( playList->next() ) - play(); + if ( playList->next() ) + play(); else if ( mediaPlayerState->looping() ) { if ( playList->first() ) @@ -171,7 +172,7 @@ void MediaPlayer::stopChangingVolume() { void MediaPlayer::timerEvent( QTimerEvent * ) { - if ( volumeDirection == +1 ) + if ( volumeDirection == +1 ) AudioDevice::increaseVolume(); - else if ( volumeDirection == -1 ) + else if ( volumeDirection == -1 ) AudioDevice::decreaseVolume(); } |