~ubuntu-branches/ubuntu/edgy/koffice/edgy-updates

« back to all changes in this revision

Viewing changes to kpresenter/kpresenter_aboutdata.h

  • Committer: Bazaar Package Importer
  • Author(s): Ben Burton
  • Date: 2004-05-09 11:33:00 UTC
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20040509113300-xi5t1z4yxe7n03x7
Tags: upstream-1.3.1
Import upstream version 1.3.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
#include <kaboutdata.h>
24
24
#include <klocale.h>
 
25
#include <config.h>
25
26
 
26
27
static const char* description=I18N_NOOP("KOffice Presentation Tool");
27
 
static const char* version="1.1.1";
 
28
static const char* version=VERSION;
28
29
 
29
30
KAboutData * newKPresenterAboutData()
30
31
{
31
32
    KAboutData * aboutData=new KAboutData( "kpresenter", I18N_NOOP("KPresenter"),
32
 
                                           version, description, KAboutData::License_GPL,
33
 
                                           I18N_NOOP("(c) 1998-2001, The KPresenter Team"), 0,
 
33
                                           version, description, KAboutData::License_LGPL,
 
34
                                           I18N_NOOP("(c) 1998-2003, The KPresenter Team"), 0,
34
35
                                           "http://www.koffice.org/kpresenter/");
35
36
    aboutData->addAuthor("Reginald Stadlbauer",I18N_NOOP("original author"), "reggie@kde.org");
36
 
    aboutData->addAuthor("Werner Trobin", I18N_NOOP("current maintainer"), "trobin@kde.org");
 
37
    aboutData->addAuthor("Laurent Montel", I18N_NOOP("current maintainer"), "montel@kde.org");
 
38
    aboutData->addAuthor("Werner Trobin", 0, "trobin@kde.org");
37
39
    aboutData->addAuthor("David Faure", 0, "dfaure@kde.org");
38
40
    aboutData->addAuthor("Toshitaka Fujioka", 0, "fujioka@kde.org");
39
41
    aboutData->addAuthor("Lukáš Tinkl", 0, "lukas@kde.org");
 
42
    aboutData->addAuthor("Thorsten Zachmann", 0, "t.zachmann@zagge.de");
 
43
    aboutData->addAuthor("Ariya Hidayat", 0, "ariya@kde.org");
 
44
    aboutData->addAuthor("Percy Leonhardt", 0, "percy@eris23.de");
40
45
    return aboutData;
41
46
}
42
47