summaryrefslogtreecommitdiffstats
path: root/kgeography/src/main.cpp
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commitce599e4f9f94b4eb00c1b5edb85bce5431ab3df2 (patch)
treed3bb9f5d25a2dc09ca81adecf39621d871534297 /kgeography/src/main.cpp
downloadtdeedu-ce599e4f9f94b4eb00c1b5edb85bce5431ab3df2.tar.gz
tdeedu-ce599e4f9f94b4eb00c1b5edb85bce5431ab3df2.zip
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
Diffstat (limited to 'kgeography/src/main.cpp')
-rw-r--r--kgeography/src/main.cpp37
1 files changed, 37 insertions, 0 deletions
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 <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();
+}