SVN_SILENT made messages (.desktop file)
[kdegraphics.git] / okular / generators / ooo / generator_ooo.cpp
blob7ba36105ef3005287df56616335b47098b3f0c8e
1 /***************************************************************************
2 * Copyright (C) 2006 by Tobias Koenig <tokoe@kde.org> *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
8 ***************************************************************************/
10 #include "generator_ooo.h"
12 #include "converter.h"
14 #include <kaboutdata.h>
15 #include <klocale.h>
17 static KAboutData createAboutData()
19 KAboutData aboutData(
20 "okular_ooo",
21 "okular_ooo",
22 ki18n( "OpenOffice Document Backend" ),
23 "0.2",
24 ki18n( "A renderer for OpenOffice text documents" ),
25 KAboutData::License_GPL,
26 ki18n( "© 2006-2008 Tobias Koenig" )
28 aboutData.addAuthor( ki18n( "Tobias Koenig" ), KLocalizedString(), "tokoe@kde.org" );
30 return aboutData;
33 OKULAR_EXPORT_PLUGIN( KOOOGenerator, createAboutData() )
35 KOOOGenerator::KOOOGenerator( QObject *parent, const QVariantList &args )
36 : Okular::TextDocumentGenerator( new OOO::Converter, parent, args )