summaryrefslogtreecommitdiff
path: root/noncore/apps/checkbook/main.cpp
Unidiff
Diffstat (limited to 'noncore/apps/checkbook/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/checkbook/main.cpp22
1 files changed, 6 insertions, 16 deletions
diff --git a/noncore/apps/checkbook/main.cpp b/noncore/apps/checkbook/main.cpp
index 328b61f..68f00e6 100644
--- a/noncore/apps/checkbook/main.cpp
+++ b/noncore/apps/checkbook/main.cpp
@@ -1,21 +1,11 @@
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
11#include <qpe/qpeapplication.h> 1#include <qpe/qpeapplication.h>
12#include "oxygen.h" 2#include "qcheckbook.h"
13 3
14int main(int argc, char **argv) 4int main(int argc, char **argv)
15{ 5{
16 QPEApplication app(argc, argv); 6 QPEApplication app(argc, argv);
17 Oxygen *oxi = new Oxygen(); 7 QCheckBook *qcb = new QCheckBook();
18 app.setMainWidget(oxi); 8 app.setMainWidget(qcb);
19 oxi->showMaximized(); 9 qcb->showMaximized();
20 return app.exec(); 10 return app.exec();
21} 11}