summaryrefslogtreecommitdiff
path: root/noncore/apps/checkbook/main.cpp
authorkergoth <kergoth>2002-09-15 17:23:20 (UTC)
committer kergoth <kergoth>2002-09-15 17:23:20 (UTC)
commit9bd6edd077df796677c9d069200172f930ac1304 (patch) (side-by-side diff)
tree3b473d4280249b5ade8e5276758cc8f9aa3c2822 /noncore/apps/checkbook/main.cpp
parent33ec9ead7ce30bf9450b9048506f0bda49ba4791 (diff)
downloadopie-9bd6edd077df796677c9d069200172f930ac1304.zip
opie-9bd6edd077df796677c9d069200172f930ac1304.tar.gz
opie-9bd6edd077df796677c9d069200172f930ac1304.tar.bz2
Reverting to checkbook in its previous state, hopefully i got everything.
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 @@
-/***************************************************************************
- * *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or *
- * ( at your option ) any later version. *
- * *
- * ***********************************************************************/
-
-
#include <qpe/qpeapplication.h>
-#include "oxygen.h"
+#include "qcheckbook.h"
int main(int argc, char **argv)
{
- QPEApplication app(argc, argv);
- Oxygen *oxi = new Oxygen();
- app.setMainWidget(oxi);
- oxi->showMaximized();
- return app.exec();
+ QPEApplication app(argc, argv);
+ QCheckBook *qcb = new QCheckBook();
+ app.setMainWidget(qcb);
+ qcb->showMaximized();
+ return app.exec();
}