You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
2.0 KiB
51 lines
2.0 KiB
/***************************************************************************
|
|
kxmleditorabout.h - description
|
|
-------------------
|
|
begin : Mon Sep 24 2001
|
|
copyright : (C) 2001, 2002, 2003 by The KXMLEditor Team
|
|
email : OleBowle@gmx.de
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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 <tdeaboutdata.h>
|
|
#include <tdelocale.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 TDEAboutData
|
|
{
|
|
public:
|
|
KXMLEditorAboutData()
|
|
: TDEAboutData( "kxmleditor",
|
|
I18N_NOOP("KXML Editor"),
|
|
VERSION,
|
|
description,
|
|
TDEAboutData::License_GPL,
|
|
"(c) 2001-2004, The KXML Editor Developers",
|
|
0,
|
|
"http://kxmleditor.sourceforge.net",
|
|
"lvanek@users.sourceforge.net" )
|
|
{
|
|
addAuthor("Lumir Vanek", I18N_NOOP("Developer and maintainer"), "lvanek@users.sourceforge.net", "http://www.valachnet.cz/lvanek");
|
|
addAuthor("Olaf Hartig", I18N_NOOP("Developer"), "hartig@users.sourceforge.net");
|
|
addAuthor("Adam Charytoniuk", I18N_NOOP("Developer"), "a_charytoniuk@users.sourceforge.net");
|
|
}
|
|
};
|
|
|
|
#endif
|