aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/programs/Xserver/Xext
diff options
context:
space:
mode:
authorUlrich Sibiller <uli42@gmx.de>2020-10-02 22:19:07 +0200
committerUlrich Sibiller <uli42@gmx.de>2020-11-03 19:53:07 +0100
commit1701a4a441d719cd5660cf3550cf2e5a62027a1d (patch)
tree26f0cec107f66696c3b08377c930ec935fbf48e6 /nx-X11/programs/Xserver/Xext
parentebee6af050edbd60e0148e5939fdf0aecc48400d (diff)
downloadnx-libs-1701a4a441d719cd5660cf3550cf2e5a62027a1d.tar.gz
nx-libs-1701a4a441d719cd5660cf3550cf2e5a62027a1d.tar.bz2
nx-libs-1701a4a441d719cd5660cf3550cf2e5a62027a1d.zip
Xext/panoramiX.c: rename shadowing variables
Diffstat (limited to 'nx-X11/programs/Xserver/Xext')
-rw-r--r--nx-X11/programs/Xserver/Xext/panoramiX.c14
1 files 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;
}
}