diff options
Diffstat (limited to 'kfile-plugins')
-rw-r--r-- | kfile-plugins/k3bproject/kfile_k3bprojectfileplugin.cpp | 4 | ||||
-rw-r--r-- | kfile-plugins/k3bproject/kfile_k3bprojectfileplugin.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/kfile-plugins/k3bproject/kfile_k3bprojectfileplugin.cpp b/kfile-plugins/k3bproject/kfile_k3bprojectfileplugin.cpp index 197d9e5..953f0e7 100644 --- a/kfile-plugins/k3bproject/kfile_k3bprojectfileplugin.cpp +++ b/kfile-plugins/k3bproject/kfile_k3bprojectfileplugin.cpp @@ -33,9 +33,9 @@ K_EXPORT_COMPONENT_FACTORY(kfile_k3b, KGenericFactory<K3bProjectFilePlugin>("kfile_k3b")) -K3bProjectFilePlugin::K3bProjectFilePlugin( TQObject *tqparent, const char *name, +K3bProjectFilePlugin::K3bProjectFilePlugin( TQObject *parent, const char *name, const TQStringList &args) - : KFilePlugin(tqparent, name, args) + : KFilePlugin(parent, name, args) { KFileMimeTypeInfo* info = addMimeTypeInfo( "application/x-k3b" ); diff --git a/kfile-plugins/k3bproject/kfile_k3bprojectfileplugin.h b/kfile-plugins/k3bproject/kfile_k3bprojectfileplugin.h index a8b2b13..ed2f986 100644 --- a/kfile-plugins/k3bproject/kfile_k3bprojectfileplugin.h +++ b/kfile-plugins/k3bproject/kfile_k3bprojectfileplugin.h @@ -29,7 +29,7 @@ class K3bProjectFilePlugin: public KFilePlugin TQ_OBJECT public: - K3bProjectFilePlugin( TQObject *tqparent, const char *name, const TQStringList& args ); + K3bProjectFilePlugin( TQObject *parent, const char *name, const TQStringList& args ); virtual bool readInfo( KFileMetaInfo& info, uint what); }; |