summaryrefslogtreecommitdiffstats
path: root/parts/uimode
diff options
context:
space:
mode:
Diffstat (limited to 'parts/uimode')
-rw-r--r--parts/uimode/uichooser_part.cpp4
-rw-r--r--parts/uimode/uichooser_part.h2
-rw-r--r--parts/uimode/uichooser_widget.cpp4
-rw-r--r--parts/uimode/uichooser_widget.h2
4 files changed, 6 insertions, 6 deletions
diff --git a/parts/uimode/uichooser_part.cpp b/parts/uimode/uichooser_part.cpp
index 64a07b70..855f4daf 100644
--- a/parts/uimode/uichooser_part.cpp
+++ b/parts/uimode/uichooser_part.cpp
@@ -18,8 +18,8 @@ typedef KDevGenericFactory<UIChooserPart> UIChooserFactory;
static const KDevPluginInfo data("kdevuichooser");
K_EXPORT_COMPONENT_FACTORY( libkdevuichooser, UIChooserFactory( data ) )
-UIChooserPart::UIChooserPart(TQObject *tqparent, const char *name, const TQStringList &)
- : KDevPlugin( &data, tqparent, name ? name : "UIChooserPart")
+UIChooserPart::UIChooserPart(TQObject *parent, const char *name, const TQStringList &)
+ : KDevPlugin( &data, parent, name ? name : "UIChooserPart")
{
setInstance(UIChooserFactory::instance());
diff --git a/parts/uimode/uichooser_part.h b/parts/uimode/uichooser_part.h
index 1e48d35b..a6b79532 100644
--- a/parts/uimode/uichooser_part.h
+++ b/parts/uimode/uichooser_part.h
@@ -18,7 +18,7 @@ class UIChooserPart : public KDevPlugin
TQ_OBJECT
public:
- UIChooserPart(TQObject *tqparent, const char *name, const TQStringList &);
+ UIChooserPart(TQObject *parent, const char *name, const TQStringList &);
~UIChooserPart();
private slots:
diff --git a/parts/uimode/uichooser_widget.cpp b/parts/uimode/uichooser_widget.cpp
index 064380e0..2fe6b919 100644
--- a/parts/uimode/uichooser_widget.cpp
+++ b/parts/uimode/uichooser_widget.cpp
@@ -27,8 +27,8 @@
#include "kdevmainwindow.h"
#include "uichooser_widget.h"
-UIChooserWidget::UIChooserWidget( UIChooserPart * part, TQWidget *tqparent, const char *name)
- : UIChooser(tqparent, name)
+UIChooserWidget::UIChooserWidget( UIChooserPart * part, TQWidget *parent, const char *name)
+ : UIChooser(parent, name)
,m_part(part), _lastMode(0L)
{
load();
diff --git a/parts/uimode/uichooser_widget.h b/parts/uimode/uichooser_widget.h
index 4901f1af..67b45142 100644
--- a/parts/uimode/uichooser_widget.h
+++ b/parts/uimode/uichooser_widget.h
@@ -21,7 +21,7 @@ public:
_NeverShowTabs = 2
};
- UIChooserWidget( UIChooserPart * part, TQWidget *tqparent=0, const char *name=0 );
+ UIChooserWidget( UIChooserPart * part, TQWidget *parent=0, const char *name=0 );
public slots:
void accept();