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

« back to all changes in this revision

Viewing changes to filters/kword/amipro/amiproexport.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:
23
23
 
24
24
#include <kdebug.h>
25
25
#include <KoFilterChain.h>
26
 
#include <kgenericfactory.h>
 
26
#include <kpluginfactory.h>
27
27
 
28
28
#include <KWEFStructures.h>
29
29
#include <KWEFBaseWorker.h>
32
32
 
33
33
#include <amiproexport.h>
34
34
 
35
 
typedef KGenericFactory<AmiProExport> AmiProExportFactory;
36
 
K_EXPORT_COMPONENT_FACTORY(libamiproexport, AmiProExportFactory("kofficefilters"))
 
35
K_PLUGIN_FACTORY(AmiProExportFactory, registerPlugin<AmiProExport>();)
 
36
K_EXPORT_PLUGIN(AmiProExportFactory("kofficefilters"))
37
37
class AmiProWorker : public KWEFBaseWorker
38
38
{
39
39
public:
165
165
    return true;
166
166
}
167
167
 
168
 
AmiProExport::AmiProExport(QObject* parent, const QStringList&):
 
168
AmiProExport::AmiProExport(QObject* parent, const QVariantList&):
169
169
        KoFilter(parent)
170
170
{
171
171
}