summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/src/network/tqsocket.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tqtinterface/qt4/src/network/tqsocket.cpp')
-rw-r--r--tqtinterface/qt4/src/network/tqsocket.cpp8
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;