okteta
about.cpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #include "about.h"
00024
00025
00026 #include <KLocale>
00027
00028 #include <kdeversion.h>
00029
00030
00031
00032 static const char ProgramId[] = "okteta";
00033 static const char ProgramVersion[] = "0.2.0";
00034 static const char ProgramHomepage[] = "http://utils.kde.org/projects/okteta";
00035
00036 static const char FWHKEmailAddress[] = "kossebau@kde.org";
00037
00038
00039 OktetaAboutData::OktetaAboutData()
00040 : KAboutData( ProgramId, 0,
00041 ki18n("Okteta"), ProgramVersion,
00042 ki18n("KDE bytes editor"),
00043 KAboutData::License_GPL_V2,
00044 ki18n("Copyright 2006-2008 Friedrich W. H. Kossebau"),
00045 ki18n("Edit files as an array of bytes"),
00046 ProgramHomepage )
00047 {
00048 #if KDE_IS_VERSION(4,0,70)
00049 addLicense(KAboutData::License_GPL_V3);
00050 #endif
00051 setOrganizationDomain( "kde.org" );
00052 addAuthor( ki18n("Friedrich W. H. Kossebau"),
00053 ki18n("Author"),
00054 FWHKEmailAddress );
00055 }