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