summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-14 21:18:11 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-14 21:18:11 -0600
commitfc3c9d3c5ff6ed64cdaeaf2e9c050aa3037fe335 (patch)
treef1e7de165d9a038aed66481b047cd32b4e1091df /win
parent00894908e7b9359d8432a615380bf3db1d4745a0 (diff)
downloadtdelibs-fc3c9d3c5ff6ed64cdaeaf2e9c050aa3037fe335.tar.gz
tdelibs-fc3c9d3c5ff6ed64cdaeaf2e9c050aa3037fe335.zip
Update various qt function definitions and static methods for tqt3
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;