diff options
Diffstat (limited to 'tqtinterface/qt4/src/widgets/tqwidgetplugin.cpp')
-rw-r--r-- | tqtinterface/qt4/src/widgets/tqwidgetplugin.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tqtinterface/qt4/src/widgets/tqwidgetplugin.cpp b/tqtinterface/qt4/src/widgets/tqwidgetplugin.cpp index 9b4d106..57eed86 100644 --- a/tqtinterface/qt4/src/widgets/tqwidgetplugin.cpp +++ b/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; } |