-rw-r--r-- | core/multimedia/opieplayer/main.cpp | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/core/multimedia/opieplayer/main.cpp b/core/multimedia/opieplayer/main.cpp index 32dc1d5..4a7ac52 100644 --- a/core/multimedia/opieplayer/main.cpp +++ b/core/multimedia/opieplayer/main.cpp @@ -19,2 +19,5 @@ **********************************************************************/ +#include <qmessagebox.h> + + #include "mediaplayerstate.h" @@ -36,2 +39,8 @@ int main(int argc, char **argv) { + if(!QDir(QString(getenv("OPIEDIR")) +"/pics/opieplayer2/skins/").exists()) { + QMessageBox::critical( 0, "Opieplayer Error", "<p>opieplayer2 skin not found. Please install an opieplayer2 skin.</p>" ); + + return -1; + } + MediaPlayerState st( 0, "mediaPlayerState" ); @@ -45,8 +54,8 @@ int main(int argc, char **argv) { LoopControl lc( 0, "loopControl" ); +// qDebug("loop control created"); loopControl = &lc; MediaPlayer mp( 0, "mediaPlayer" ); - +// qDebug("mediaplayer created"); // pl.setCaption( MediaPlayer::tr("OpiePlayer") ); a.showMainDocumentWidget(&pl); - return a.exec(); |