kpilot
kpalmdoc.cppGo to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #include "options.h"
00030
00031 #include <kcmdlineargs.h>
00032 #include <kaboutdata.h>
00033 #include <kapplication.h>
00034
00035 #include "kpalmdoc_dlg.h"
00036
00037
00038
00039 int main(int argc, char *argv[])
00040 {
00041
00042 KAboutData about("converter", I18N_NOOP("KPalmDOC"), "-0.0.1",
00043 "KPalmDOC - KDE Converter for PalmDOC texts.\n\n",
00044 KAboutData::License_GPL, "(c) 2003, Reinhold Kainhofer");
00045 about.addAuthor("Reinhold Kainhofer", I18N_NOOP("Main Developer"),
00046 "reinhold@kainhofer.com", "http://reinhold.kainhofer.com/Linux/");
00047 about.addCredit("Adriaan de Groot", I18N_NOOP("Maintainer of KPilot"),
00048 "groot@kde.org", "http://www.kpilot.org/");
00049
00050 KCmdLineArgs::init(argc, argv, &about);
00051 KApplication::addCmdLineOptions();
00052
00053 KApplication app;
00054 ConverterDlg *dlg=new ConverterDlg(0L, i18n("PalmDOC Converter"));
00055 dlg->show();
00056 return app.exec();
00057 }
00058
|