summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc/main.cpp
Unidiff
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 @@
1#include <qpe/qpeapplication.h>
2#include "mainwindow.h"
3
4int main(int argc, char **argv) {
5 QPEApplication a(argc, argv);
6 MainWindow mw;
7 a.showMainWidget(&mw);
8 return a.exec();
9}
10