summaryrefslogtreecommitdiff
path: root/core
authorllornkcor <llornkcor>2002-04-20 23:36:33 (UTC)
committer llornkcor <llornkcor>2002-04-20 23:36:33 (UTC)
commit0e028a1857c7648bc329cbbf5cb35435be909ea6 (patch) (unidiff)
treeff44b5649f0e08369fe57f540c5c32ce075a6937 /core
parentd616ece749006d720305632700228a41bcdd5c53 (diff)
downloadopie-0e028a1857c7648bc329cbbf5cb35435be909ea6.zip
opie-0e028a1857c7648bc329cbbf5cb35435be909ea6.tar.gz
opie-0e028a1857c7648bc329cbbf5cb35435be909ea6.tar.bz2
blah
Diffstat (limited to 'core') (more/less context) (show whitespace changes)
-rw-r--r--core/multimedia/opieplayer/mediaplayer.cpp3
1 files changed, 2 insertions, 1 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
@@ -94,13 +94,14 @@ void MediaPlayer::setPlaying( bool play ) {
94 } 94 }
95 if ( currentFile == NULL ) { 95 if ( currentFile == NULL ) {
96 QMessageBox::critical( 0, tr( "No file"), tr( "Error: There is no file selected" ) ); 96 QMessageBox::critical( 0, tr( "No file"), tr( "Error: There is no file selected" ) );
97 mediaPlayerState->setPlaying( FALSE ); 97 mediaPlayerState->setPlaying( FALSE );
98 return; 98 return;
99 } 99 }
100 if ( !QFile::exists( currentFile->file() ) ) { 100
101 if ( ((currentFile->file()).left(4) != "http") && !QFile::exists( currentFile->file() ) ) {
101 QMessageBox::critical( 0, tr( "File not found"), tr( "The following file was not found: <i>" ) + currentFile->file() + "</i>" ); 102 QMessageBox::critical( 0, tr( "File not found"), tr( "The following file was not found: <i>" ) + currentFile->file() + "</i>" );
102 mediaPlayerState->setPlaying( FALSE ); 103 mediaPlayerState->setPlaying( FALSE );
103 return; 104 return;
104 } 105 }
105 106
106 if ( !mediaPlayerState->newDecoder( currentFile->file() ) ) { 107 if ( !mediaPlayerState->newDecoder( currentFile->file() ) ) {