summaryrefslogtreecommitdiffstats
path: root/experimental/tqtinterface/qt4/src/widgets/tqwidgetplugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/tqtinterface/qt4/src/widgets/tqwidgetplugin.cpp')
-rw-r--r--experimental/tqtinterface/qt4/src/widgets/tqwidgetplugin.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/experimental/tqtinterface/qt4/src/widgets/tqwidgetplugin.cpp b/experimental/tqtinterface/qt4/src/widgets/tqwidgetplugin.cpp
index 9b4d106c2..57eed865c 100644
--- a/experimental/tqtinterface/qt4/src/widgets/tqwidgetplugin.cpp
+++ b/experimental/tqtinterface/qt4/src/widgets/tqwidgetplugin.cpp
@@ -91,7 +91,7 @@ public:
TQ_REFCOUNT;
TQStringList featureList() const;
- TQWidget *create( const TQString &key, TQWidget *tqparent, const char *name );
+ TQWidget *create( const TQString &key, TQWidget *parent, const char *name );
TQString group( const TQString &widget ) const;
TQIconSet iconSet( const TQString &widget ) const;
TQString includeFile( const TQString &widget ) const;
@@ -166,7 +166,7 @@ TQRESULT TQWidgetPluginPrivate::queryInterface( const TQUuid &iid, TQUnknownInte
Creates and returns a TQWidget object for the widget key \a key.
The widget key is the class name of the required widget. The \a
- name and \a tqparent arguments are passed to the custom widget's
+ name and \a parent arguments are passed to the custom widget's
constructor.
\sa keys()
@@ -182,9 +182,9 @@ TQStringList TQWidgetPluginPrivate::featureList() const
return plugin->keys();
}
-TQWidget *TQWidgetPluginPrivate::create( const TQString &key, TQWidget *tqparent, const char *name )
+TQWidget *TQWidgetPluginPrivate::create( const TQString &key, TQWidget *parent, const char *name )
{
- TQWidget *w = plugin->create( key, tqparent, name );
+ TQWidget *w = plugin->create( key, parent, name );
widgets.add( TQT_TQOBJECT(w) );
return w;
}