summaryrefslogtreecommitdiff
path: root/comm/XtMultiplexer.cc
diff options
context:
space:
mode:
authorchatty1994-05-10 11:36:23 +0000
committerchatty1994-05-10 11:36:23 +0000
commitb0fff9b9e5becf35cdd051a81d0574a3a6c3be2a (patch)
treef6e866161bb17587d344d0fbdf30cef57b435444 /comm/XtMultiplexer.cc
parent6f03fc87b2858caf3424639cbba2d38f8f8f3029 (diff)
downloadivy-league-b0fff9b9e5becf35cdd051a81d0574a3a6c3be2a.zip
ivy-league-b0fff9b9e5becf35cdd051a81d0574a3a6c3be2a.tar.gz
ivy-league-b0fff9b9e5becf35cdd051a81d0574a3a6c3be2a.tar.bz2
ivy-league-b0fff9b9e5becf35cdd051a81d0574a3a6c3be2a.tar.xz
replaced TRUE/FALSE by true/false
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;