author | llornkcor <llornkcor> | 2002-04-20 23:36:33 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-04-20 23:36:33 (UTC) |
commit | 0e028a1857c7648bc329cbbf5cb35435be909ea6 (patch) (side-by-side diff) | |
tree | ff44b5649f0e08369fe57f540c5c32ce075a6937 | |
parent | d616ece749006d720305632700228a41bcdd5c53 (diff) | |
download | opie-0e028a1857c7648bc329cbbf5cb35435be909ea6.zip opie-0e028a1857c7648bc329cbbf5cb35435be909ea6.tar.gz opie-0e028a1857c7648bc329cbbf5cb35435be909ea6.tar.bz2 |
blah
-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 @@ -99,3 +99,4 @@ void MediaPlayer::setPlaying( bool play ) { } - 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>" ); @@ -136,3 +137,3 @@ void MediaPlayer::prev() { play(); - } else + } else mediaPlayerState->setList(); @@ -142,4 +143,4 @@ void MediaPlayer::prev() { void MediaPlayer::next() { - if ( playList->next() ) - play(); + if ( playList->next() ) + play(); else if ( mediaPlayerState->looping() ) { @@ -172,5 +173,5 @@ 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(); |