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

« back to all changes in this revision

Viewing changes to filters/karbon/wmf/wmfimport.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
 
31
31
#include <KDebug>
32
 
#include <KGenericFactory>
33
 
 
34
 
typedef KGenericFactory<WMFImport> WMFImportFactory;
35
 
K_EXPORT_COMPONENT_FACTORY(libwmfimport, WMFImportFactory("kofficefilters"))
36
 
 
37
 
 
38
 
WMFImport::WMFImport(QObject *parent, const QStringList&) :
 
32
#include <KPluginFactory>
 
33
 
 
34
K_PLUGIN_FACTORY(WMFImportFactory, registerPlugin<WMFImport>();)
 
35
K_EXPORT_PLUGIN(WMFImportFactory("kofficefilters"))
 
36
 
 
37
 
 
38
WMFImport::WMFImport(QObject *parent, const QVariantList&) :
39
39
        KoFilter(parent)
40
40
{
41
41
}