~ubuntu-branches/ubuntu/raring/koffice/raring

« back to all changes in this revision

Viewing changes to filters/kformula/svg/svgexport.cc

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-12-06 15:30:09 UTC
  • mfrom: (0.13.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20101206153009-yf0dqbp9l7fzwxi8
Tags: 1:2.2.91-0ubuntu1
New upstream RC release

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
#include <KoFilterChain.h>
30
30
#include <KoStore.h>
31
31
//#include <KoStoreDevice.h>
32
 
#include <kgenericfactory.h>
 
32
#include <kpluginfactory.h>
33
33
 
34
34
#include <kformulacontainer.h>
35
35
#include "kformuladocument.h"
37
37
#include "svgexport.h"
38
38
 
39
39
 
40
 
typedef KGenericFactory<SvgExport> SvgExportFactory;
41
 
K_EXPORT_COMPONENT_FACTORY(libkfosvgexport, SvgExportFactory("svgexport"))
 
40
K_PLUGIN_FACTORY(SvgExportFactory, registerPlugin<SvgExport>();)
 
41
K_EXPORT_PLUGIN(SvgExportFactory("svgexport"))
42
42
 
43
 
SvgExport::SvgExport(QObject* parent, const QStringList&)
 
43
SvgExport::SvgExport(QObject* parent, const QVariantList&)
44
44
        : KoFilter(parent)
45
45
{
46
46
}