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/tqsocket.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/tqsocket.cpp')
-rw-r--r-- | tqtinterface/qt4/src/network/tqsocket.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tqtinterface/qt4/src/network/tqsocket.cpp b/tqtinterface/qt4/src/network/tqsocket.cpp index c894f3e..8e4d40a 100644 --- a/tqtinterface/qt4/src/network/tqsocket.cpp +++ b/tqtinterface/qt4/src/network/tqsocket.cpp @@ -393,22 +393,22 @@ qint64 TQSocket::writeData( const char *data, qint64 len ) /*! Creates a TQSocket object in \c TQSocket::Idle state. - The \a tqparent and \a name arguments are passed on to the TQObject + The \a parent and \a name arguments are passed on to the TQObject constructor. Note that a TQApplication must have been constructed before sockets can be used. */ -TQSocket::TQSocket( TQObject *tqparent, const char *name ) +TQSocket::TQSocket( TQObject *parent, const char *name ) #ifdef USE_QT4 : TQIODevice() #else // USE_QT4 - : TQObject( tqparent, name ) + : TQObject( parent, name ) #endif // USE_QT4 { #ifdef USE_QT4 - setParent(tqparent); + setParent(parent); setObjectName(name); #endif // USE_QT4 d = new TQSocketPrivate; |