From b0fff9b9e5becf35cdd051a81d0574a3a6c3be2a Mon Sep 17 00:00:00 2001 From: chatty Date: Tue, 10 May 1994 11:36:23 +0000 Subject: replaced TRUE/FALSE by true/false --- comm/XtMultiplexer.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'comm/XtMultiplexer.cc') 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; -- cgit v1.1