You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.4 KiB
54 lines
1.4 KiB
/*
|
|
* (C) 1999, 2000 Sirtaj Singh Kang <taj@kde.org>
|
|
* (C) 2000 Rik Hemsley <rik@kde.org>
|
|
*/
|
|
|
|
#include"kornapp.h"
|
|
#include <kaboutdata.h>
|
|
#include <kcmdlineargs.h>
|
|
#include <klocale.h>
|
|
|
|
#include"kornshell.h"
|
|
|
|
static const char description[] = I18N_NOOP("KDE mail checker");
|
|
static const char version[] = "0.4";
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
KAboutData aboutData(argv[0], I18N_NOOP("Korn"),
|
|
version, description, KAboutData::License_GPL,
|
|
I18N_NOOP("(c) 1999-2004, The Korn Developers"));
|
|
aboutData.addAuthor("Sirtaj Singh Kang",0, "taj@kde.org");
|
|
aboutData.addAuthor("Cristian Tibirna",0, "tibirna@kde.org");
|
|
aboutData.addAuthor("Kurt Granroth",0, "granroth@kde.org");
|
|
aboutData.addAuthor("Rik Hemsley",0, "rik@kde.org");
|
|
aboutData.addAuthor("Fixes by Jörg Habenicht",0, "j.habenicht@europemail.com");
|
|
aboutData.addAuthor("Preview by Heiner Eichmann",0, "h.eichmann@gmx.de");
|
|
aboutData.addAuthor("Mart Kelder",0,"mart@kelder31.nl");
|
|
|
|
KCmdLineArgs::init( argc, argv, &aboutData );
|
|
KUniqueApplication::addCmdLineOptions();
|
|
|
|
if( !KUniqueApplication::start() ) {
|
|
// Already running. Should pop up the preferences dialog
|
|
return 0;
|
|
}
|
|
|
|
KornApp *app = new KornApp();
|
|
KornShell *korn = new KornShell( 0, "shell" );
|
|
app->setShell( korn );
|
|
|
|
//app->enableSessionManagement( true );
|
|
|
|
//if( korn->init() ) {
|
|
korn->show();
|
|
app->exec();
|
|
//}
|
|
|
|
delete korn;
|
|
delete app;
|
|
|
|
return 0;
|
|
}
|