diff options
author | Slávek Banko <[email protected]> | 2016-03-26 13:50:43 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2016-03-26 13:50:43 +0100 |
commit | d62c8c002c51fb7c36487839eeeb4ac89f044dee (patch) | |
tree | bb4d1f5c631ab1f22a3018ba39e6a806035f80fd /part/kxmleditorabout.h | |
download | kxmleditor-d62c8c002c51fb7c36487839eeeb4ac89f044dee.tar.gz kxmleditor-d62c8c002c51fb7c36487839eeeb4ac89f044dee.zip |
Initial import of kxmleditor 1.1.4
Diffstat (limited to 'part/kxmleditorabout.h')
-rw-r--r-- | part/kxmleditorabout.h | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/part/kxmleditorabout.h b/part/kxmleditorabout.h new file mode 100644 index 0000000..67478f0 --- /dev/null +++ b/part/kxmleditorabout.h @@ -0,0 +1,50 @@ +/*************************************************************************** + kxmleditorabout.h - description + ------------------- + begin : Mon Sep 24 2001 + copyright : (C) 2001, 2002, 2003 by The KXMLEditor Team + email : [email protected] + ***************************************************************************/ + +/*************************************************************************** + * * + * 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. * + * * + ***************************************************************************/ + +#ifndef KXMLEDITORABOUT_H +#define KXMLEDITORABOUT_H + +#include <kaboutdata.h> +#include <klocale.h> + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +static const char *description = I18N_NOOP("KXML Editor is an utility to display and edit XML files"); + +class KXMLEditorAboutData : public KAboutData +{ + public: + KXMLEditorAboutData() + : KAboutData( "kxmleditor", + I18N_NOOP("KXML Editor"), + VERSION, + description, + KAboutData::License_GPL, + "(c) 2001-2004, The KXML Editor Developers", + 0, + "http://kxmleditor.sourceforge.net", + "[email protected]" ) + { + addAuthor("Lumir Vanek", I18N_NOOP("Developer and maintainer"), "[email protected]", "http://www.valachnet.cz/lvanek"); + addAuthor("Olaf Hartig", I18N_NOOP("Developer"), "[email protected]"); + addAuthor("Adam Charytoniuk", I18N_NOOP("Developer"), "[email protected]"); + } +}; + +#endif |