From 0e028a1857c7648bc329cbbf5cb35435be909ea6 Mon Sep 17 00:00:00 2001 From: llornkcor Date: Sat, 20 Apr 2002 23:36:33 +0000 Subject: blah --- (limited to 'core/multimedia/opieplayer') 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 @@ -97,7 +97,8 @@ void MediaPlayer::setPlaying( bool play ) { mediaPlayerState->setPlaying( FALSE ); 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: " ) + currentFile->file() + "" ); mediaPlayerState->setPlaying( FALSE ); return; @@ -134,14 +135,14 @@ void MediaPlayer::prev() { else if ( mediaPlayerState->looping() ) { if ( playList->last() ) play(); - } else + } else mediaPlayerState->setList(); } void MediaPlayer::next() { - if ( playList->next() ) - play(); + if ( playList->next() ) + play(); else if ( mediaPlayerState->looping() ) { if ( playList->first() ) play(); @@ -170,9 +171,9 @@ 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(); } -- cgit v0.9.0.2