diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-08-10 12:13:27 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-08-10 12:13:27 -0500 |
commit | d296f1d337dabfeae5191955fdadb874965dbbe9 (patch) | |
tree | 1a4b3b4cca01f2ea77eee2497297219d60e9bbd4 /tqtinterface/qt4/src/network/tqhttp.cpp | |
parent | eaa7ee2e0bbca40ba3173c4304f81957e8964291 (diff) | |
download | experimental-d296f1d337dabfeae5191955fdadb874965dbbe9.tar.gz experimental-d296f1d337dabfeae5191955fdadb874965dbbe9.zip |
rename the following methods:
tqparent parent
tqmask mask
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(); |