summaryrefslogtreecommitdiff
path: root/noncore/tools/pimconverter/converter.cpp
Side-by-side diff
Diffstat (limited to 'noncore/tools/pimconverter/converter.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/tools/pimconverter/converter.cpp23
1 files changed, 5 insertions, 18 deletions
diff --git a/noncore/tools/pimconverter/converter.cpp b/noncore/tools/pimconverter/converter.cpp
index ded59b6..e9de3c3 100644
--- a/noncore/tools/pimconverter/converter.cpp
+++ b/noncore/tools/pimconverter/converter.cpp
@@ -3,4 +3,3 @@
/* OPIE */
-#include <qpe/qpeapplication.h>
-
+#include <opie2/oapplicationfactory.h>
#include <opie2/odebug.h>
@@ -19,2 +18,4 @@
+OPIE_EXPORT_APP( Opie::Core::OApplicationFactory<Converter> )
+
using namespace Opie;
@@ -22,3 +23,4 @@ using namespace Pim;
-Converter::Converter():
+Converter::Converter(QWidget *p, const char* n, WFlags fl):
+ converter_base( p, n, fl ),
m_selectedDatabase( ADDRESSBOOK ),
@@ -224,16 +226 @@ void Converter::closeEvent( QCloseEvent *e )
}
-
-
-
-int main( int argc, char** argv ) {
-
- QPEApplication a( argc, argv );
-
- Converter dlg;
-
- a.showMainWidget( &dlg );
- // dlg. showMaximized ( );
-
- return a.exec();
-
-}