summaryrefslogtreecommitdiffstats
path: root/libksirtet/lib/socket.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libksirtet/lib/socket.cpp')
-rw-r--r--libksirtet/lib/socket.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libksirtet/lib/socket.cpp b/libksirtet/lib/socket.cpp
index 7dd74f74..6defc94b 100644
--- a/libksirtet/lib/socket.cpp
+++ b/libksirtet/lib/socket.cpp
@@ -21,13 +21,13 @@
#endif
Socket::Socket(KExtendedSocket *s, bool createNotifier,
- TQObject *tqparent, const char *name)
+ TQObject *parent, const char *name)
: _socket(s), _notifier(0)
{
Q_ASSERT(s);
if (createNotifier) {
_notifier = new TQSocketNotifier(s->fd(), TQSocketNotifier::Read,
- tqparent, name);
+ parent, name);
_notifier->setEnabled(FALSE);
}
}