aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/programs/Xserver/hw/nxagent/Composite.c
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2020-01-05 22:46:24 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2020-01-05 22:46:24 +0100
commita261b72435d7d30dbe36529a51fc53f6ade34dff (patch)
treefde666b59abbe3bdf0ed574147344c0d25075b03 /nx-X11/programs/Xserver/hw/nxagent/Composite.c
parent0e2b7479cd4567128fbcd975e5376744d78cd416 (diff)
parentadca0cc92abed6f7f6184b91d807a4befb80e856 (diff)
downloadnx-libs-a261b72435d7d30dbe36529a51fc53f6ade34dff.tar.gz
nx-libs-a261b72435d7d30dbe36529a51fc53f6ade34dff.tar.bz2
nx-libs-a261b72435d7d30dbe36529a51fc53f6ade34dff.zip
Merge branch 'uli42-pr/code_cleanup' into 3.6.x
Attributes GH PR #869: https://github.com/ArcticaProject/nx-libs/pull/869
Diffstat (limited to 'nx-X11/programs/Xserver/hw/nxagent/Composite.c')
-rw-r--r--nx-X11/programs/Xserver/hw/nxagent/Composite.c27
1 files changed, 11 insertions, 16 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Composite.c b/nx-X11/programs/Xserver/hw/nxagent/Composite.c
index e48671879..af29f8ebc 100644
--- a/nx-X11/programs/Xserver/hw/nxagent/Composite.c
+++ b/nx-X11/programs/Xserver/hw/nxagent/Composite.c
@@ -44,8 +44,7 @@
#undef DEBUG
/*
- * Set if the composite extension is supported
- * by the remote display.
+ * Set if the composite extension is supported by the remote display.
*/
int nxagentCompositeEnable = UNDEFINED;
@@ -53,8 +52,7 @@ int nxagentCompositeEnable = UNDEFINED;
void nxagentCompositeExtensionInit(void)
{
/*
- * Set the flag only if the initialization
- * completes.
+ * Set the flag only if the initialization completes.
*/
nxagentCompositeEnable = 0;
@@ -70,8 +68,8 @@ void nxagentCompositeExtensionInit(void)
if (XCompositeQueryExtension(nxagentDisplay, &eventBase, &errorBase) == 1)
{
/*
- * At the moment we don't need to care
- * the version of the extension.
+ * At the moment we don't need to care the version of the
+ * extension.
*/
#ifdef TEST
@@ -117,8 +115,6 @@ void nxagentCompositeExtensionInit(void)
void nxagentRedirectDefaultWindows(void)
{
- int i;
-
if (nxagentOption(Rootless) == 1 ||
nxagentCompositeEnable == 0)
{
@@ -131,7 +127,7 @@ void nxagentRedirectDefaultWindows(void)
return;
}
- for (i = 0; i < screenInfo.numScreens; i++)
+ for (int i = 0; i < screenInfo.numScreens; i++)
{
WindowPtr pWin = screenInfo.screens[i]->root;
@@ -143,13 +139,12 @@ void nxagentRedirectDefaultWindows(void)
#endif
/*
- * When trying to redirect only the top level window,
- * and not the subwindows, we incur in a strange be-
- * haviour. The top level is unmapped, mapped, unmap-
- * ped and then reparented. This at first makes the
- * agent think that the window manager is gone, then
- * the agent window disappears. To make thinks even
- * more weird, this happens only at reconnection.
+ * When trying to redirect only the top level window, and not the
+ * subwindows, we incur in a strange be- haviour. The top level is
+ * unmapped, mapped, unmap- ped and then reparented. This at first
+ * makes the agent think that the window manager is gone, then the
+ * agent window disappears. To make thinks even more weird, this
+ * happens only at reconnection.
*/
XCompositeRedirectSubwindows(nxagentDisplay, nxagentDefaultWindows[pScreen->myNum],