From ce599e4f9f94b4eb00c1b5edb85bce5431ab3df2 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kgeography/src/main.cpp | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 kgeography/src/main.cpp (limited to 'kgeography/src/main.cpp') diff --git a/kgeography/src/main.cpp b/kgeography/src/main.cpp new file mode 100644 index 00000000..e7b9d6ab --- /dev/null +++ b/kgeography/src/main.cpp @@ -0,0 +1,37 @@ +/*************************************************************************** + * 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 +#include +#include + +#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(); +} -- cgit v1.2.1