kwatchgnupg/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[] = "1.0";
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 { "Steffen Hansen", I18N_NOOP("Original Author"), "hansen@kde.org", 0 },
00049 };
00050
00051 #if 0
00052
00053 static const about_data credits[] = {
00054
00055 };
00056 #endif
00057
00058 AboutData::AboutData()
00059 : KAboutData( "kwatchgnupg", I18N_NOOP("KWatchGnuPG"),
00060 kwatchgnupg_version, description, License_GPL,
00061 "(c) 2004 Klar\xC3\xA4lvdalens Datakonsult AB\n" )
00062 {
00063 using ::authors;
00064
00065 for ( unsigned int i = 0 ; i < sizeof authors / sizeof *authors ; ++i )
00066 addAuthor( authors[i].name, authors[i].desc,
00067 authors[i].email, authors[i].web );
00068 #if 0
00069 for ( unsigned int i = 0 ; i < sizeof credits / sizeof *credits ; ++i )
00070 addCredit( credits[i].name, credits[i].desc,
00071 credits[i].email, credits[i].web );
00072 #endif
00073 }
This file is part of the documentation for certmanager Library Version 3.3.2.