[X2Go-Commits] [nx-libs] 61/429: Xext/panoramiX.c: rename shadowing variables
git-admin at x2go.org
git-admin at x2go.org
Mon Oct 18 09:36:06 CEST 2021
This is an automated email from the git hooks/post-receive script.
x2go pushed a commit to branch 3.6.x
in repository nx-libs.
commit 1701a4a441d719cd5660cf3550cf2e5a62027a1d
Author: Ulrich Sibiller <uli42 at gmx.de>
Date: Fri Oct 2 22:19:07 2020 +0200
Xext/panoramiX.c: rename shadowing variables
---
nx-X11/programs/Xserver/Xext/panoramiX.c | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/nx-X11/programs/Xserver/Xext/panoramiX.c b/nx-X11/programs/Xserver/Xext/panoramiX.c
index 6eab7f36d..e85ba33d7 100644
--- a/nx-X11/programs/Xserver/Xext/panoramiX.c
+++ b/nx-X11/programs/Xserver/Xext/panoramiX.c
@@ -601,8 +601,8 @@ extern Bool CreateConnectionBlock(void);
Bool PanoramiXCreateConnectionBlock(void)
{
int i, j, length;
- Bool disableBackingStore = FALSE;
- Bool disableSaveUnders = FALSE;
+ Bool disable_backing_store = FALSE;
+ Bool disable_save_unders = FALSE;
int old_width, old_height;
float width_mult, height_mult;
xWindowRoot *root;
@@ -627,17 +627,17 @@ Bool PanoramiXCreateConnectionBlock(void)
return FALSE;
}
if(pScreen->backingStoreSupport != screenInfo.screens[0]->backingStoreSupport)
- disableBackingStore = TRUE;
+ disable_backing_store = TRUE;
if(pScreen->saveUnderSupport != screenInfo.screens[0]->saveUnderSupport)
- disableSaveUnders = TRUE;
+ disable_save_unders = TRUE;
}
- if(disableBackingStore || disableSaveUnders) {
+ if(disable_backing_store || disable_save_unders) {
for(i = 0; i < screenInfo.numScreens; i++) {
pScreen = screenInfo.screens[i];
- if(disableBackingStore)
+ if(disable_backing_store)
pScreen->backingStoreSupport = NotUseful;
- if(disableSaveUnders)
+ if(disable_save_unders)
pScreen->saveUnderSupport = NotUseful;
}
}
--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/nx-libs.git
More information about the x2go-commits
mailing list