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

« back to all changes in this revision

Viewing changes to filters/kchart/genericimageexport/genericimageexport.cpp

  • 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:
26
26
 
27
27
#include <KoFilterChain.h>
28
28
#include <KoStore.h>
29
 
#include <kgenericfactory.h>
 
29
#include <kpluginfactory.h>
30
30
#include <KoDocument.h>
31
31
#include <KoXmlReader.h>
32
32
#include <exportsizedia.h>
34
34
#include "KChartPart.h"
35
35
 
36
36
 
37
 
typedef KGenericFactory<GenericImageExport> GenericImageExportFactory;
38
 
K_EXPORT_COMPONENT_FACTORY(libkchartgenericimageexport, GenericImageExportFactory("genericimageexport"))
39
 
 
40
 
 
41
 
GenericImageExport::GenericImageExport(QObject* parent, const QStringList&)
 
37
K_PLUGIN_FACTORY(GenericImageExportFactory, registerPlugin<GenericImageExport>();)
 
38
K_EXPORT_PLUGIN(GenericImageExportFactory("genericimageexport"))
 
39
 
 
40
 
 
41
GenericImageExport::GenericImageExport(QObject* parent, const QVariantList&)
42
42
        : KoFilter(parent)
43
43
{
44
44
}