summaryrefslogtreecommitdiff
path: root/noncore/settings/mediummount/main.cpp
authorzecke <zecke>2002-04-27 16:11:28 (UTC)
committer zecke <zecke>2002-04-27 16:11:28 (UTC)
commit68a364bbab96b8a26bf6a4a1f9f9989c08a001c5 (patch) (unidiff)
tree81feaabb443fd4e80dc0f1469587ab5951a16e00 /noncore/settings/mediummount/main.cpp
parentd0a9aaaca068af74d845743b0bf4f13f6f179f27 (diff)
downloadopie-68a364bbab96b8a26bf6a4a1f9f9989c08a001c5.zip
opie-68a364bbab96b8a26bf6a4a1f9f9989c08a001c5.tar.gz
opie-68a364bbab96b8a26bf6a4a1f9f9989c08a001c5.tar.bz2
Add the medium mount settings app. Now launcher needs to catch up again
Diffstat (limited to 'noncore/settings/mediummount/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/mediummount/main.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/noncore/settings/mediummount/main.cpp b/noncore/settings/mediummount/main.cpp
new file mode 100644
index 0000000..e4443bd
--- a/dev/null
+++ b/noncore/settings/mediummount/main.cpp
@@ -0,0 +1,16 @@
1#include "mediumwidget.h"
2#include "mediumglobal.h"
3#include "mainwindow.h"
4
5#include <qpixmap.h>
6#include <qpe/qpeapplication.h>
7
8int main( int argc, char ** argv )
9{
10 QPEApplication a( argc, argv );
11
12 MediumMountSetting::MainWindow mw;
13 a.showMainWidget( &mw );
14
15 return a.exec();
16}