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