summaryrefslogtreecommitdiff
path: root/core/multimedia/opieplayer/main.cpp
Unidiff
Diffstat (limited to 'core/multimedia/opieplayer/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/multimedia/opieplayer/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/multimedia/opieplayer/main.cpp b/core/multimedia/opieplayer/main.cpp
index 720a1ca..4f43ff6 100644
--- a/core/multimedia/opieplayer/main.cpp
+++ b/core/multimedia/opieplayer/main.cpp
@@ -26,31 +26,31 @@
26#include "mediaplayer.h" 26#include "mediaplayer.h"
27 27
28MediaPlayerState *mediaPlayerState; 28MediaPlayerState *mediaPlayerState;
29PlayListWidget *playList; 29PlayListWidget *playList;
30AudioWidget *audioUI; 30AudioWidget *audioUI;
31VideoWidget *videoUI; 31VideoWidget *videoUI;
32LoopControl *loopControl; 32LoopControl *loopControl;
33 33
34 34
35int main(int argc, char **argv) { 35int main(int argc, char **argv) {
36 QPEApplication a(argc,argv); 36 QPEApplication a(argc,argv);
37 37
38 MediaPlayerState st( 0, "mediaPlayerState" ); 38 MediaPlayerState st( 0, "mediaPlayerState" );
39 mediaPlayerState = &st; 39 mediaPlayerState = &st;
40 PlayListWidget pl( 0, "playList" ); 40 PlayListWidget pl( 0, "playList" );
41 playList = &pl; 41 playList = &pl;
42 AudioWidget aw( 0, "audioUI" ); 42 AudioWidget aw( 0, "audioUI" );
43 audioUI = &aw; 43 audioUI = &aw;
44 VideoWidget vw( 0, "videoUI" ); 44 VideoWidget vw( 0, "videoUI" );
45 videoUI = &vw; 45 videoUI = &vw;
46 LoopControl lc( 0, "loopControl" ); 46 LoopControl lc( 0, "loopControl" );
47 loopControl = &lc; 47 loopControl = &lc;
48 MediaPlayer mp( 0, "mediaPlayer" ); 48 MediaPlayer mp( 0, "mediaPlayer" );
49 49
50 pl.setCaption( MediaPlayer::tr("Media Player") ); 50 pl.setCaption( MediaPlayer::tr("OpiePlayer") );
51 a.showMainDocumentWidget(&pl); 51 a.showMainDocumentWidget(&pl);
52 52
53 return a.exec(); 53 return a.exec();
54} 54}
55 55
56 56