diff options
Diffstat (limited to 'parts/openwith')
-rw-r--r-- | parts/openwith/openwithpart.cpp | 4 | ||||
-rw-r--r-- | parts/openwith/openwithpart.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/parts/openwith/openwithpart.cpp b/parts/openwith/openwithpart.cpp index bce4df7e..7fc1fcbe 100644 --- a/parts/openwith/openwithpart.cpp +++ b/parts/openwith/openwithpart.cpp @@ -21,8 +21,8 @@ typedef KDevGenericFactory<OpenWithPart> OpenWithFactory; static const KDevPluginInfo data("kdevopenwith"); K_EXPORT_COMPONENT_FACTORY(libkdevopenwith, OpenWithFactory(data)) -OpenWithPart::OpenWithPart(TQObject *tqparent, const char *name, const TQStringList &) - : KDevPlugin(&data, tqparent, name ? name : "OpenWithPart") +OpenWithPart::OpenWithPart(TQObject *parent, const char *name, const TQStringList &) + : KDevPlugin(&data, parent, name ? name : "OpenWithPart") { setInstance( OpenWithFactory::instance() ); diff --git a/parts/openwith/openwithpart.h b/parts/openwith/openwithpart.h index 0f72adf8..004faa79 100644 --- a/parts/openwith/openwithpart.h +++ b/parts/openwith/openwithpart.h @@ -16,7 +16,7 @@ class OpenWithPart : public KDevPlugin public: - OpenWithPart(TQObject *tqparent, const char *name, const TQStringList &); + OpenWithPart(TQObject *parent, const char *name, const TQStringList &); ~OpenWithPart(); |