Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nx-libs
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dimbor
nx-libs
Commits
1701a4a4
Commit
1701a4a4
authored
Oct 02, 2020
by
Ulrich Sibiller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Xext/panoramiX.c: rename shadowing variables
parent
ebee6af0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
panoramiX.c
nx-X11/programs/Xserver/Xext/panoramiX.c
+7
-7
No files found.
nx-X11/programs/Xserver/Xext/panoramiX.c
View file @
1701a4a4
...
...
@@ -601,8 +601,8 @@ extern Bool CreateConnectionBlock(void);
Bool
PanoramiXCreateConnectionBlock
(
void
)
{
int
i
,
j
,
length
;
Bool
disable
BackingS
tore
=
FALSE
;
Bool
disable
SaveU
nders
=
FALSE
;
Bool
disable
_backing_s
tore
=
FALSE
;
Bool
disable
_save_u
nders
=
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
)
disable
BackingS
tore
=
TRUE
;
disable
_backing_s
tore
=
TRUE
;
if
(
pScreen
->
saveUnderSupport
!=
screenInfo
.
screens
[
0
]
->
saveUnderSupport
)
disable
SaveU
nders
=
TRUE
;
disable
_save_u
nders
=
TRUE
;
}
if
(
disable
BackingStore
||
disableSaveU
nders
)
{
if
(
disable
_backing_store
||
disable_save_u
nders
)
{
for
(
i
=
0
;
i
<
screenInfo
.
numScreens
;
i
++
)
{
pScreen
=
screenInfo
.
screens
[
i
];
if
(
disable
BackingS
tore
)
if
(
disable
_backing_s
tore
)
pScreen
->
backingStoreSupport
=
NotUseful
;
if
(
disable
SaveU
nders
)
if
(
disable
_save_u
nders
)
pScreen
->
saveUnderSupport
=
NotUseful
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment