summaryrefslogtreecommitdiffstats
path: root/wizards
diff options
context:
space:
mode:
Diffstat (limited to 'wizards')
-rw-r--r--wizards/groupwarewizard.cpp4
-rw-r--r--wizards/groupwarewizard.h2
-rw-r--r--wizards/overviewpage.cpp4
-rw-r--r--wizards/overviewpage.h2
-rw-r--r--wizards/servertype.h4
-rw-r--r--wizards/servertypemanager.cpp4
-rw-r--r--wizards/servertypemanager.h2
7 files changed, 11 insertions, 11 deletions
diff --git a/wizards/groupwarewizard.cpp b/wizards/groupwarewizard.cpp
index 12d1f7fe..48ac3b5a 100644
--- a/wizards/groupwarewizard.cpp
+++ b/wizards/groupwarewizard.cpp
@@ -28,8 +28,8 @@
#include "groupwarewizard.h"
-GroupwareWizard::GroupwareWizard( TQWidget *tqparent, const char *name )
- : TQWidget( tqparent, name )
+GroupwareWizard::GroupwareWizard( TQWidget *parent, const char *name )
+ : TQWidget( parent, name )
{
setCaption( i18n( "KDE Groupware Wizard" ) );
diff --git a/wizards/groupwarewizard.h b/wizards/groupwarewizard.h
index b5b6a526..1461a6a7 100644
--- a/wizards/groupwarewizard.h
+++ b/wizards/groupwarewizard.h
@@ -32,7 +32,7 @@ class GroupwareWizard : public TQWidget
TQ_OBJECT
public:
- GroupwareWizard( TQWidget *tqparent, const char *name = 0 );
+ GroupwareWizard( TQWidget *parent, const char *name = 0 );
~GroupwareWizard();
private:
diff --git a/wizards/overviewpage.cpp b/wizards/overviewpage.cpp
index 74933d67..a15b580e 100644
--- a/wizards/overviewpage.cpp
+++ b/wizards/overviewpage.cpp
@@ -40,8 +40,8 @@
#include "overviewpage.h"
-OverViewPage::OverViewPage( TQWidget *tqparent, const char *name )
- : TQWidget( tqparent, name )
+OverViewPage::OverViewPage( TQWidget *parent, const char *name )
+ : TQWidget( parent, name )
{
TQGridLayout *tqlayout = new TQGridLayout( this, 7, 4, KDialog::marginHint(),
KDialog::spacingHint() );
diff --git a/wizards/overviewpage.h b/wizards/overviewpage.h
index ebe85030..f5baa323 100644
--- a/wizards/overviewpage.h
+++ b/wizards/overviewpage.h
@@ -30,7 +30,7 @@ class OverViewPage : public TQWidget
TQ_OBJECT
public:
- OverViewPage( TQWidget *tqparent, const char *name = 0 );
+ OverViewPage( TQWidget *parent, const char *name = 0 );
~OverViewPage();
private slots:
diff --git a/wizards/servertype.h b/wizards/servertype.h
index 2f660dc5..c726ea39 100644
--- a/wizards/servertype.h
+++ b/wizards/servertype.h
@@ -55,7 +55,7 @@ class ServerType : public TQObject
*/
typedef TQValueList<ConnectionInfo> ConnectionInfoList;
- ServerType( TQObject *tqparent, const char *name ):TQObject(tqparent, name) {}
+ ServerType( TQObject *parent, const char *name ):TQObject(parent, name) {}
virtual ~ServerType() {}
/**
@@ -104,7 +104,7 @@ class ServerType : public TQObject
class ServerTypeFactory : public KLibFactory
{
public:
- virtual ServerType *serverType( TQObject *tqparent, const char *name = 0 ) = 0;
+ virtual ServerType *serverType( TQObject *parent, const char *name = 0 ) = 0;
/**
Returns the identifier.
diff --git a/wizards/servertypemanager.cpp b/wizards/servertypemanager.cpp
index fec5bd12..3e55a394 100644
--- a/wizards/servertypemanager.cpp
+++ b/wizards/servertypemanager.cpp
@@ -28,8 +28,8 @@
ServerTypeManager* ServerTypeManager::mSelf = 0;
static KStaticDeleter<ServerTypeManager> serverManagerDeleter;
-ServerTypeManager::ServerTypeManager( TQObject *tqparent, const char *name )
- : TQObject( tqparent, name )
+ServerTypeManager::ServerTypeManager( TQObject *parent, const char *name )
+ : TQObject( parent, name )
{
loadPlugins();
}
diff --git a/wizards/servertypemanager.h b/wizards/servertypemanager.h
index c3070dd4..9dcfdfdf 100644
--- a/wizards/servertypemanager.h
+++ b/wizards/servertypemanager.h
@@ -61,7 +61,7 @@ class ServerTypeManager : public TQObject
void loadPlugins();
- ServerTypeManager( TQObject *tqparent, const char *name = 0 );
+ ServerTypeManager( TQObject *parent, const char *name = 0 );
static ServerTypeManager* mSelf;