aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/programs/Xserver/hw/nxagent/Client.c
diff options
context:
space:
mode:
authorUlrich Sibiller <uli42@gmx.de>2020-12-30 20:07:57 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-01-15 16:38:11 +0100
commit2565484f5d6dc7dc794e729a1fdd15bfba3b48b0 (patch)
tree67f6c6009a622fe9909cd212904702598915bd9d /nx-X11/programs/Xserver/hw/nxagent/Client.c
parentca5a14743168055638a1e8b1fcd5833eeeec515d (diff)
downloadnx-libs-2565484f5d6dc7dc794e729a1fdd15bfba3b48b0.tar.gz
nx-libs-2565484f5d6dc7dc794e729a1fdd15bfba3b48b0.tar.bz2
nx-libs-2565484f5d6dc7dc794e729a1fdd15bfba3b48b0.zip
nxagent: treat several nxagentOptions as real Booleans
Adaptive, Composite, DeviceControl, DeviceControlUserDefined, IgnoreVisibility, InhibitXkb, Nested, Menu, MagicPixel, Persistent, Reset, ResetzKeyboardAtResume, SharedMemory, SharedPixmaps, Streaming, UseDamage, ViewOnly, Xdmcp, Xinerama
Diffstat (limited to 'nx-X11/programs/Xserver/hw/nxagent/Client.c')
-rw-r--r--nx-X11/programs/Xserver/hw/nxagent/Client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Client.c b/nx-X11/programs/Xserver/hw/nxagent/Client.c
index 83554e573..e0adef3bc 100644
--- a/nx-X11/programs/Xserver/hw/nxagent/Client.c
+++ b/nx-X11/programs/Xserver/hw/nxagent/Client.c
@@ -332,7 +332,7 @@ void nxagentGuessShadowHint(ClientPtr client, Atom property)
* the windows updated.
*/
- nxagentChangeOption(IgnoreVisibility, 1);
+ nxagentChangeOption(IgnoreVisibility, True);
}
}
}
@@ -373,7 +373,7 @@ static void checkIfShadowAgent(ClientPtr client)
fprintf(stderr, "nxagentCheckIfShadowAgent: The last shadow nxagent has been detached.\n");
#endif
- nxagentChangeOption(IgnoreVisibility, 0);
+ nxagentChangeOption(IgnoreVisibility, False);
}
}
}