summaryrefslogtreecommitdiffstats
path: root/languages/bash
diff options
context:
space:
mode:
Diffstat (limited to 'languages/bash')
-rw-r--r--languages/bash/bashsupport_part.cpp4
-rw-r--r--languages/bash/bashsupport_part.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/languages/bash/bashsupport_part.cpp b/languages/bash/bashsupport_part.cpp
index 4b167623..a36761a8 100644
--- a/languages/bash/bashsupport_part.cpp
+++ b/languages/bash/bashsupport_part.cpp
@@ -36,8 +36,8 @@ typedef KDevGenericFactory<BashSupportPart> BashSupportFactory;
static const KDevPluginInfo data("kdevbashsupport");
K_EXPORT_COMPONENT_FACTORY( libkdevbashsupport, BashSupportFactory( data ) )
-BashSupportPart::BashSupportPart(TQObject *tqparent, const char *name, const TQStringList& )
-: KDevLanguageSupport (&data, tqparent, name ? name : "BashSupportPart" )
+BashSupportPart::BashSupportPart(TQObject *parent, const char *name, const TQStringList& )
+: KDevLanguageSupport (&data, parent, name ? name : "BashSupportPart" )
{
setInstance(BashSupportFactory::instance());
setXMLFile("kdevbashsupport.rc");
diff --git a/languages/bash/bashsupport_part.h b/languages/bash/bashsupport_part.h
index b083a32a..a05e93f9 100644
--- a/languages/bash/bashsupport_part.h
+++ b/languages/bash/bashsupport_part.h
@@ -52,7 +52,7 @@ class BashSupportPart : public KDevLanguageSupport
Q_OBJECT
TQ_OBJECT
public:
- BashSupportPart(TQObject *tqparent, const char *name, const TQStringList &);
+ BashSupportPart(TQObject *parent, const char *name, const TQStringList &);
virtual ~BashSupportPart();
protected: