summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-sheet/main.cpp
Side-by-side diff
Diffstat (limited to 'noncore/apps/opie-sheet/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-sheet/main.cpp10
1 files changed, 2 insertions, 8 deletions
diff --git a/noncore/apps/opie-sheet/main.cpp b/noncore/apps/opie-sheet/main.cpp
index e42b4a5..d0a2995 100644
--- a/noncore/apps/opie-sheet/main.cpp
+++ b/noncore/apps/opie-sheet/main.cpp
@@ -1,28 +1,22 @@
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
/*
* Opie Sheet (formerly Sheet/Qt)
* by Serdar Ozler <sozler@sitebest.com>
*/
#include <qpe/qpeapplication.h>
#include "mainwindow.h"
-int main(int argc, char **argv)
-{
- QPEApplication application(argc, argv);
+#include <opie/oapplicationfactory.h>
- MainWindow windowMain;
- windowMain.setHelpFile(application.qpeDir()+"/help/html/"+QString(argv[0])+".html");
- application.showMainDocumentWidget(&windowMain);
+OPIE_EXPORT_APP( OApplicationFactory<MainWindow> )
- return application.exec();
-}