summaryrefslogtreecommitdiff
path: root/comm/XtMultiplexer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'comm/XtMultiplexer.cc')
-rw-r--r--comm/XtMultiplexer.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/comm/XtMultiplexer.cc b/comm/XtMultiplexer.cc
index edd2409..fbd49b5 100644
--- a/comm/XtMultiplexer.cc
+++ b/comm/XtMultiplexer.cc
@@ -116,7 +116,7 @@ MPX_RES
UchXtMultiplexer :: Loop ()
{
XEvent event;
- bool waiting = TRUE;
+ bool waiting = true;
while (Looping && (waiting || ReadCount || WriteCount)) {
// *** problem with other loop: work proc are not called!
@@ -125,10 +125,10 @@ UchXtMultiplexer :: Loop ()
XtNextEvent (&event);
XtDispatchEvent (&event);
if (ReadCount || WriteCount)
- waiting = FALSE;
+ waiting = false;
}
if (Looping) {
- Looping = FALSE;
+ Looping = false;
return isMpxEmpty;
}
return isMpxTerminated;