summaryrefslogtreecommitdiff
path: root/noncore/apps/checkbook/main.cpp
Unidiff
Diffstat (limited to 'noncore/apps/checkbook/main.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/checkbook/main.cpp18
1 files changed, 14 insertions, 4 deletions
diff --git a/noncore/apps/checkbook/main.cpp b/noncore/apps/checkbook/main.cpp
index 68f00e6..328b61f 100644
--- a/noncore/apps/checkbook/main.cpp
+++ b/noncore/apps/checkbook/main.cpp
@@ -1,11 +1,21 @@
1/***************************************************************************
2 * *
3 * This program is free software; you can redistribute it and/or modify *
4 * it under the terms of the GNU General Public License as published by *
5 * the Free Software Foundation; either version 2 of the License, or *
6 * ( at your option ) any later version. *
7 * *
8 * ***********************************************************************/
9
10
1#include <qpe/qpeapplication.h> 11#include <qpe/qpeapplication.h>
2#include "qcheckbook.h" 12#include "oxygen.h"
3 13
4int main(int argc, char **argv) 14int main(int argc, char **argv)
5{ 15{
6 QPEApplication app(argc, argv); 16 QPEApplication app(argc, argv);
7 QCheckBook *qcb = new QCheckBook(); 17 Oxygen *oxi = new Oxygen();
8 app.setMainWidget(qcb); 18 app.setMainWidget(oxi);
9 qcb->showMaximized(); 19 oxi->showMaximized();
10 return app.exec(); 20 return app.exec();
11} 21}