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.
38 lines
2.1 KiB
38 lines
2.1 KiB
15 years ago
|
/***************************************************************************
|
||
|
* Copyright (C) 2004-2005 by Albert Astals Cid *
|
||
|
* tsdgeos@terra.es *
|
||
|
* *
|
||
|
* 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 <kaboutdata.h>
|
||
|
#include <kapplication.h>
|
||
|
#include <kcmdlineargs.h>
|
||
|
|
||
|
#include "kgeography.h"
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
KAboutData about("kgeography", I18N_NOOP("KGeography"), "0.4.4", I18N_NOOP("A geography learning program"), KAboutData::License_GPL, "© 2004-2005 Albert Astals Cid", 0, "http://kgeography.berlios.de");
|
||
|
about.addAuthor("Albert Astals Cid", I18N_NOOP("Programmer and designer"), "tsdgeos@terra.es");
|
||
|
about.addCredit("Danny Allen", I18N_NOOP("Small refinements"), "danny@dannyallen.co.uk");
|
||
|
about.addCredit("Giuseppe Caruso", I18N_NOOP("Italy flags and Italy by provinces map"), "caruso@pietrobo.com");
|
||
|
about.addCredit("Melody Fink", I18N_NOOP("Map contributor"));
|
||
|
about.addCredit("Mikolaj Machowski", I18N_NOOP("Map contributor"));
|
||
|
about.addCredit("Ed Montgomery", I18N_NOOP("Map contributor"));
|
||
|
about.addCredit("Justin Morgan", I18N_NOOP("Map contributor"));
|
||
|
about.addCredit("Frank Mutsaers", I18N_NOOP("Map contributor"));
|
||
|
about.addCredit("Maurizio Paolini", I18N_NOOP("Map contributor"));
|
||
|
about.addCredit("Yann Verley", I18N_NOOP("Contributed some maps and map generation tools"), "yann.verley@free.fr");
|
||
|
about.addCredit(I18N_NOOP("Sodipodi flags collection"), I18N_NOOP("Got some flags from it"), 0, "http://www.sodipodi.com/index.php3?section=clipart/flags");
|
||
|
KCmdLineArgs::init(argc, argv, &about);
|
||
|
KApplication app;
|
||
|
|
||
|
app.setTopWidget(new kgeography());
|
||
|
|
||
|
return app.exec();
|
||
|
}
|