summaryrefslogtreecommitdiff
path: root/noncore/unsupported/mobilemsg/main.cpp
Side-by-side diff
Diffstat (limited to 'noncore/unsupported/mobilemsg/main.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/unsupported/mobilemsg/main.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/noncore/unsupported/mobilemsg/main.cpp b/noncore/unsupported/mobilemsg/main.cpp
new file mode 100644
index 0000000..f65d12e
--- a/dev/null
+++ b/noncore/unsupported/mobilemsg/main.cpp
@@ -0,0 +1,12 @@
+#include "mobilemsg.h"
+#include <qpe/qpeapplication.h>
+
+int main( int argc, char ** argv )
+{
+ QPEApplication a( argc, argv );
+
+ MobileMsg mw;
+ a.showMainWidget( &mw );
+
+ return a.exec();
+}