summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
Diffstat (limited to 'win')
-rw-r--r--win/qeventloopex.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/qeventloopex.cpp b/win/qeventloopex.cpp
index da5eba60c..0914665db 100644
--- a/win/qeventloopex.cpp
+++ b/win/qeventloopex.cpp
@@ -186,13 +186,13 @@ void QEventLoopEx::registerSocketNotifier( TQSocketNotifier *notifier )
if ( ! list ) {
// create new list, the QSockNotType destructor will delete it for us
list = new TQPtrList<QSockNotEx>;
- Q_CHECK_PTR( list );
+ TQ_CHECK_PTR( list );
list->setAutoDelete( TRUE );
d->sn_vec[type].list = list;
}
sn = new QSockNotEx;
- Q_CHECK_PTR( sn );
+ TQ_CHECK_PTR( sn );
sn->obj = notifier;
sn->fd = sockfd;
sn->queue = &d->sn_vec[type].pending_fds;