korganizer
aboutdata.cpp00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #include "aboutdata.h"
00026
00027 #include "version.h"
00028
00029 using namespace KOrg;
00030
00031 AboutData *AboutData::mSelf = 0;
00032
00033 AboutData::AboutData()
00034 : KAboutData( "korganizer", I18N_NOOP("KOrganizer"), korgVersion,
00035 I18N_NOOP("A Personal Organizer for KDE"),
00036 KAboutData::License_GPL,
00037 "(c) 1997-1999 Preston Brown\n"
00038 "(c) 2000-2004 Cornelius Schumacher\n"
00039 "(c) 2004-2005 Reinhold Kainhofer", 0,
00040 "http://korganizer.kde.org" )
00041 {
00042 addAuthor("Reinhold Kainhofer",I18N_NOOP("Current Maintainer"),
00043 "reinhold@kainhofer.com");
00044 addAuthor("Cornelius Schumacher",I18N_NOOP("Co-Maintainer"),
00045 "schumacher@kde.org");
00046 addAuthor("Preston Brown",I18N_NOOP("Original Author"),
00047 "pbrown@kde.org");
00048 addCredit("Richard Apodaca");
00049 addCredit("Jan-Pascal van Best");
00050 addCredit("Laszlo Boloni");
00051 addCredit("Barry Benowitz");
00052 addCredit("Christopher Beard");
00053 addCredit("Ian Dawes");
00054 addCredit("Thomas Eitzenberger");
00055 addCredit("Neil Hart");
00056 addCredit("Declan Houlihan");
00057 addCredit("Hans-Jürgen Husel");
00058 addCredit("Tim Jansen");
00059 addCredit("Christian Kirsch");
00060 addCredit("Tobias König");
00061 addCredit("Martin Koller");
00062 addCredit("Uwe Koloska");
00063 addCredit("Glen Parker");
00064 addCredit("Dan Pilone");
00065 addCredit("Roman Rohr");
00066 addCredit("Don Sanders");
00067 addCredit("Bram Schoenmakers");
00068 addCredit("Günter Schwann");
00069 addCredit("Herwin Jan Steehouwer");
00070 addCredit("Mario Teijeiro");
00071 addCredit("Nick Thompson");
00072 addCredit("Bo Thorsen");
00073 addCredit("Allen Winter");
00074 addCredit("Larry Wright");
00075 addCredit("Thomas Zander");
00076 addCredit("Fester Zigterman");
00077 }
00078
00079 AboutData *AboutData::self()
00080 {
00081 if ( !mSelf ) mSelf = new AboutData;
00082 return mSelf;
00083 }
|