diff options
Diffstat (limited to 'tqtinterface/qt4/src/network/tqhttp.cpp')
-rw-r--r-- | tqtinterface/qt4/src/network/tqhttp.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tqtinterface/qt4/src/network/tqhttp.cpp b/tqtinterface/qt4/src/network/tqhttp.cpp index 53cdbeb..6b1f061 100644 --- a/tqtinterface/qt4/src/network/tqhttp.cpp +++ b/tqtinterface/qt4/src/network/tqhttp.cpp @@ -1189,13 +1189,13 @@ TQHttp::TQHttp() } /*! - Constructs a TQHttp object. The parameters \a tqparent and \a name + Constructs a TQHttp object. The parameters \a parent and \a name are passed on to the TQObject constructor. */ -TQHttp::TQHttp( TQObject* tqparent, const char* name ) +TQHttp::TQHttp( TQObject* parent, const char* name ) { - if ( tqparent ) - tqparent->insertChild( this ); + if ( parent ) + parent->insertChild( this ); setName( name ); init(); } @@ -1203,15 +1203,15 @@ TQHttp::TQHttp( TQObject* tqparent, const char* name ) /*! Constructs a TQHttp object. Subsequent requests are done by connecting to the server \a hostname on port \a port. The - parameters \a tqparent and \a name are passed on to the TQObject + parameters \a parent and \a name are passed on to the TQObject constructor. \sa setHost() */ -TQHttp::TQHttp( const TQString &hostname, TQ_UINT16 port, TQObject* tqparent, const char* name ) +TQHttp::TQHttp( const TQString &hostname, TQ_UINT16 port, TQObject* parent, const char* name ) { - if ( tqparent ) - tqparent->insertChild( this ); + if ( parent ) + parent->insertChild( this ); setName( name ); init(); |