diff options
Diffstat (limited to 'languages/cpp/app_templates/kofficepart/kopart_aboutdata.h')
-rw-r--r-- | languages/cpp/app_templates/kofficepart/kopart_aboutdata.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/languages/cpp/app_templates/kofficepart/kopart_aboutdata.h b/languages/cpp/app_templates/kofficepart/kopart_aboutdata.h new file mode 100644 index 00000000..ab66d088 --- /dev/null +++ b/languages/cpp/app_templates/kofficepart/kopart_aboutdata.h @@ -0,0 +1,24 @@ + +/* This template is based off of the KOffice example written by Torben Weis <[email protected] + It was converted to a KDevelop template by Ian Reinhart Geiser <[email protected]> +*/ + +#ifndef %{APPNAME}_ABOUTDATA +#define %{APPNAME}_ABOUTDATA + +#include <kaboutdata.h> +#include <klocale.h> + +static const char description[] = I18N_NOOP("%{APPNAME} KOffice Program"); +static const char version[] = "%{VERSION}"; + +KAboutData * new%{APPNAME}AboutData() +{ + KAboutData * aboutData=new KAboutData( "%{APPNAMELC}", I18N_NOOP("%{APPNAME}"), + version, description, KAboutData::License_%{LICENSE}, + "(c) %{YEAR}, %{AUTHOR}"); + aboutData->addAuthor("%{AUTHOR}",0, "%{EMAIL}"); + return aboutData; +} + +#endif |