aboutdata.cpp
00001
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-2003 Cornelius Schumacher", 0,
00039 "http:
00040 {
00041 addAuthor("Cornelius Schumacher",I18N_NOOP("Current Maintainer"),
00042 "schumacher@kde.org");
00043 addAuthor("Preston Brown",I18N_NOOP("Original Author"),
00044 "pbrown@kde.org");
00045 addCredit("Richard Apodaca");
00046 addCredit("Laszlo Boloni");
00047 addCredit("Barry Benowitz");
00048 addCredit("Christopher Beard");
00049 addCredit("Ian Dawes");
00050 addCredit("Thomas Eitzenberger");
00051 addCredit("Neil Hart");
00052 addCredit("Declan Houlihan");
00053 addCredit("Hans-Jürgen Husel");
00054 addCredit("Reinhold Kainhofer");
00055 addCredit("Christian Kirsch");
00056 addCredit("Uwe Koloska");
00057 addCredit("Glen Parker");
00058 addCredit("Dan Pilone");
00059 addCredit("Roman Rohr");
00060 addCredit("Günter Schwann");
00061 addCredit("Herwin Jan Steehouwer");
00062 addCredit("Nick Thompson");
00063 addCredit("Larry Wright");
00064 addCredit("Thomas Zander");
00065 addCredit("Fester Zigterman");
00066 }
00067
00068 AboutData *AboutData::self()
00069 {
00070 if ( !mSelf ) mSelf = new AboutData;
00071 return mSelf;
00072 }
This file is part of the documentation for korganizer Library Version 3.2.2.