summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2013-11-28 13:28:01 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2013-11-28 13:28:01 -0600
commit72849e2a6f973af3eeaa573a66635e37cc427bb0 (patch)
tree2d3beea645819ba70a32c19a092a874f4e89c399 /win
parentb46a7c35c167304acc48675b979ca8b32bc3d293 (diff)
downloadtdelibs-72849e2a6f973af3eeaa573a66635e37cc427bb0.tar.gz
tdelibs-72849e2a6f973af3eeaa573a66635e37cc427bb0.zip
Fix remnant QMIN/QMAX to TQMIN/TQMAX.
Diffstat (limited to 'win')
-rw-r--r--win/qeventloopex.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/win/qeventloopex.cpp b/win/qeventloopex.cpp
index 57c53a229..ac027b4ba 100644
--- a/win/qeventloopex.cpp
+++ b/win/qeventloopex.cpp
@@ -211,7 +211,7 @@ void QEventLoopEx::registerSocketNotifier( TQSocketNotifier *notifier )
FD_SET( sockfd, fds );
- d->sn_highest = QMAX( d->sn_highest, sockfd );
+ d->sn_highest = TQMAX( d->sn_highest, sockfd );
LeaveCriticalSection(&d->m_csVec);
#ifdef _DEBUG_EVENTLOOPEX
@@ -267,7 +267,7 @@ void QEventLoopEx::unregisterSocketNotifier( TQSocketNotifier *notifier )
d->sn_highest = -1;
for ( int i=0; i<3; i++ ) {
if ( d->sn_vec[i].list && ! d->sn_vec[i].list->isEmpty() )
- d->sn_highest = QMAX( d->sn_highest, // list is fd-sorted
+ d->sn_highest = TQMAX( d->sn_highest, // list is fd-sorted
d->sn_vec[i].list->getFirst()->fd );
}
}
@@ -412,7 +412,7 @@ void QEventLoopEx::run()
}
FD_SET(d->m_sockUpdate,&d->sn_vec[0].select_fds);
- d->sn_highest = QMAX(d->sn_highest,(int)d->m_sockUpdate);
+ d->sn_highest = TQMAX(d->sn_highest,(int)d->m_sockUpdate);
// FD_SET(m_sockUpdate,&sn_vec[1].select_fds);
// FD_SET(m_sockUpdate,&sn_vec[2].select_fds);