diff options
Diffstat (limited to 'kfile-plugins/pdf')
-rw-r--r-- | kfile-plugins/pdf/kfile_pdf.cpp | 4 | ||||
-rw-r--r-- | kfile-plugins/pdf/kfile_pdf.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/kfile-plugins/pdf/kfile_pdf.cpp b/kfile-plugins/pdf/kfile_pdf.cpp index d18ada11..89e46297 100644 --- a/kfile-plugins/pdf/kfile_pdf.cpp +++ b/kfile-plugins/pdf/kfile_pdf.cpp @@ -27,8 +27,8 @@ typedef KGenericFactory<KPdfPlugin> PdfFactory; K_EXPORT_COMPONENT_FACTORY(kfile_pdf, PdfFactory("kfile_pdf")) -KPdfPlugin::KPdfPlugin(TQObject *tqparent, const char *name, const TQStringList &preferredItems) - : KFilePlugin(tqparent, name, preferredItems) +KPdfPlugin::KPdfPlugin(TQObject *parent, const char *name, const TQStringList &preferredItems) + : KFilePlugin(parent, name, preferredItems) { kdDebug(7034) << "pdf plugin\n"; diff --git a/kfile-plugins/pdf/kfile_pdf.h b/kfile-plugins/pdf/kfile_pdf.h index b14d3989..f6e279c1 100644 --- a/kfile-plugins/pdf/kfile_pdf.h +++ b/kfile-plugins/pdf/kfile_pdf.h @@ -31,7 +31,7 @@ class KPdfPlugin: public KFilePlugin Q_OBJECT TQ_OBJECT public: - KPdfPlugin( TQObject *tqparent, const char *name, const TQStringList& preferredItems ); + KPdfPlugin( TQObject *parent, const char *name, const TQStringList& preferredItems ); virtual bool readInfo(KFileMetaInfo& info, uint what); }; |