From 1584395554707c75599f58c2bf8dfd3434053e13 Mon Sep 17 00:00:00 2001 From: Ulrich Sibiller Date: Mon, 24 Sep 2018 21:47:28 +0200 Subject: Window.c: improve Bool usage --- nx-X11/programs/Xserver/hw/nxagent/Window.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'nx-X11/programs/Xserver') diff --git a/nx-X11/programs/Xserver/hw/nxagent/Window.c b/nx-X11/programs/Xserver/hw/nxagent/Window.c index bde1c7d8a..55eeaa0d0 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/Window.c +++ b/nx-X11/programs/Xserver/hw/nxagent/Window.c @@ -310,7 +310,7 @@ Bool nxagentCreateWindow(pWin) /* FIXME: We need to set save under on the real display? */ - if (nxagentSaveUnder == True) + if (nxagentSaveUnder) { mask |= CWSaveUnder; attributes.save_under = False; @@ -749,7 +749,7 @@ void nxagentSwitchFullscreen(ScreenPtr pScreen, Bool switchOn) return; } - if (switchOn == 0) + if (!switchOn) { nxagentWMDetect(); @@ -793,7 +793,7 @@ void nxagentSwitchFullscreen(ScreenPtr pScreen, Bool switchOn) XSendEvent(nxagentDisplay, DefaultRootWindow(nxagentDisplay), False, SubstructureRedirectMask, &e); - if (switchOn == 1) + if (switchOn) { nxagentFullscreenWindow = nxagentDefaultWindows[pScreen -> myNum]; @@ -2683,7 +2683,7 @@ void nxagentDisconnectWindow(void * p0, XID x1, void * p2) nxagentDisconnectCursor(pCursor, (XID)0, pBool); - if (*pBool == False) + if (!*pBool) { #ifdef WARNING fprintf(stderr, "nxagentDisconnectWindow: WARNING failed disconnection of cursor at [%p]" @@ -2937,7 +2937,7 @@ static void nxagentReconnectWindow(void * param0, XID param1, void * data_buffer /* FIXME: Do we need to set save unders attribute here? */ - if (nxagentSaveUnder == True) + if (nxagentSaveUnder) { mask |= CWSaveUnder; attributes.save_under = pWin->saveUnder; -- cgit v1.2.3