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
00026
00027
00028
00029
00030
00031
00032
00033 #include "aboutdata.h"
00034
00035 #include <klocale.h>
00036
00037 static const char kwatchgnupg_version[] = "0.01";
00038 static const char description[] = I18N_NOOP("GnuPG log viewer");
00039
00040 struct about_data {
00041 const char * name;
00042 const char * desc;
00043 const char * email;
00044 const char * web;
00045 };
00046
00047 static const about_data authors[] = {
00048
00049 { "Steffen Hansen", I18N_NOOP("Original Author"), "hansen@kde.org", 0 },
00050 };
00051
00052 static const about_data credits[] = {
00053
00054 };
00055
00056 AboutData::AboutData()
00057 : KAboutData( "kwatchgnupg", I18N_NOOP("KWatchGnuPG"),
00058 kwatchgnupg_version, description, License_GPL,
00059 "(c) 2004 Klar\xC3\xA4lvdalens Datakonsult AB\n" )
00060 {
00061 using ::authors;
00062 using ::credits;
00063 for ( unsigned int i = 0 ; i < sizeof authors / sizeof *authors ; ++i )
00064 addAuthor( authors[i].name, authors[i].desc,
00065 authors[i].email, authors[i].web );
00066 for ( unsigned int i = 0 ; i < sizeof credits / sizeof *credits ; ++i )
00067 addCredit( credits[i].name, credits[i].desc,
00068 credits[i].email, credits[i].web );
00069 }
This file is part of the documentation for certmanager Library Version 3.3.0.