diff options
Diffstat (limited to 'kfile-plugins/desktop')
-rw-r--r-- | kfile-plugins/desktop/kfile_desktop.cpp | 4 | ||||
-rw-r--r-- | kfile-plugins/desktop/kfile_desktop.h | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/kfile-plugins/desktop/kfile_desktop.cpp b/kfile-plugins/desktop/kfile_desktop.cpp index 5c56d9e..5d2c9cc 100644 --- a/kfile-plugins/desktop/kfile_desktop.cpp +++ b/kfile-plugins/desktop/kfile_desktop.cpp @@ -30,9 +30,9 @@ typedef KGenericFactory<KDotDesktopPlugin> DotDesktopFactory; K_EXPORT_COMPONENT_FACTORY(kfile_desktop, DotDesktopFactory("kfile_desktop")) -KDotDesktopPlugin::KDotDesktopPlugin(TQObject *parent, const char *name, +KDotDesktopPlugin::KDotDesktopPlugin(TQObject *tqparent, const char *name, const TQStringList &preferredItems) - : KFilePlugin(parent, name, preferredItems) + : KFilePlugin(tqparent, name, preferredItems) { kdDebug(7034) << ".desktop plugin\n"; diff --git a/kfile-plugins/desktop/kfile_desktop.h b/kfile-plugins/desktop/kfile_desktop.h index 7de277b..f4d6b25 100644 --- a/kfile-plugins/desktop/kfile_desktop.h +++ b/kfile-plugins/desktop/kfile_desktop.h @@ -28,9 +28,10 @@ class TQStringList; class KDotDesktopPlugin: public KFilePlugin { Q_OBJECT + TQ_OBJECT public: - KDotDesktopPlugin( TQObject *parent, const char *name, + KDotDesktopPlugin( TQObject *tqparent, const char *name, const TQStringList& args ); virtual bool readInfo ( KFileMetaInfo& info, uint what ); |