summaryrefslogtreecommitdiff
path: root/noncore/apps/checkbook/main.cpp
Side-by-side diff
Diffstat (limited to 'noncore/apps/checkbook/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/checkbook/main.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/noncore/apps/checkbook/main.cpp b/noncore/apps/checkbook/main.cpp
new file mode 100644
index 0000000..68f00e6
--- a/dev/null
+++ b/noncore/apps/checkbook/main.cpp
@@ -0,0 +1,11 @@
+#include <qpe/qpeapplication.h>
+#include "qcheckbook.h"
+
+int main(int argc, char **argv)
+{
+ QPEApplication app(argc, argv);
+ QCheckBook *qcb = new QCheckBook();
+ app.setMainWidget(qcb);
+ qcb->showMaximized();
+ return app.exec();
+}