diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 (patch) | |
tree | 67208f7c145782a7e90b123b982ca78d88cc2c87 /knode/aboutdata.cpp | |
download | tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.tar.gz tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.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/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'knode/aboutdata.cpp')
-rw-r--r-- | knode/aboutdata.cpp | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/knode/aboutdata.cpp b/knode/aboutdata.cpp new file mode 100644 index 000000000..714f2613b --- /dev/null +++ b/knode/aboutdata.cpp @@ -0,0 +1,64 @@ +/* + aboutdata.h + + KNode, the KDE newsreader + Copyright (c) 1999-2005 the KNode authors. + See file AUTHORS for details + + 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. + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software Foundation, + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, US +*/ + +#include "aboutdata.h" + +#include "resource.h" + +namespace KNode +{ + struct about_authors { + const char* name; + const char* desc; + const char* email; + }; + + static const about_authors authors[] = { + { "Volker Krause", I18N_NOOP("Maintainer"), "volker.krause@rwth-aachen.de" }, + { "Roberto Selbach Teixeira", I18N_NOOP("Former maintainer"), "roberto@kde.org" }, + { "Christian Gebauer", 0, "gebauer@kde.org" }, + { "Christian Thurner", 0, "cthurner@web.de" }, + { "Dirk Mueller", 0, "mueller@kde.org" }, + { "Marc Mutz", 0, "mutz@kde.org" }, + { "Mathias Waack", 0, "mathias@atoll-net.de" }, + { "Laurent Montel", 0, "montel@kde.org" }, + { "Stephan Johach", 0, "lucardus@onlinehome.de" }, + { "Matthias Kalle Dalheimer", 0, "kalle@kde.org" }, + { "Zack Rusin", 0, "zack@kde.org" } + }; + + AboutData::AboutData() + : KAboutData( "knode", + I18N_NOOP("KNode"), + KNODE_VERSION, + I18N_NOOP("A newsreader for KDE"), + KAboutData::License_GPL, + I18N_NOOP("Copyright (c) 1999-2005 the KNode authors"), + 0, + "http://knode.sourceforge.net/" ) + { + using KNode::authors; + for ( unsigned int i = 0 ; i < sizeof authors / sizeof *authors ; ++i ) + addAuthor( authors[i].name, authors[i].desc, authors[i].email ); + + addCredit( "Jakob Schroeter", 0, "js@camaya.net" ); + } + + AboutData::~AboutData() + { + } + +} // namespace KNode |