Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
38a87ecf
Commit
38a87ecf
authored
Mar 09, 2011
by
Austin English
Committed by
Alexandre Julliard
Mar 09, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Avoid shadowing a parameter.
parent
651adc7f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
desktop.c
dlls/user32/desktop.c
+3
-3
No files found.
dlls/user32/desktop.c
View file @
38a87ecf
...
...
@@ -228,12 +228,12 @@ BOOL DESKTOP_SetPattern( LPCWSTR pattern )
&
pat
[
0
],
&
pat
[
1
],
&
pat
[
2
],
&
pat
[
3
],
&
pat
[
4
],
&
pat
[
5
],
&
pat
[
6
],
&
pat
[
7
]
))
{
WORD
p
atte
rn
[
8
];
WORD
p
t
rn
[
8
];
HBITMAP
hbitmap
;
int
i
;
for
(
i
=
0
;
i
<
8
;
i
++
)
p
atte
rn
[
i
]
=
pat
[
i
]
&
0xffff
;
hbitmap
=
CreateBitmap
(
8
,
8
,
1
,
1
,
p
atte
rn
);
for
(
i
=
0
;
i
<
8
;
i
++
)
p
t
rn
[
i
]
=
pat
[
i
]
&
0xffff
;
hbitmap
=
CreateBitmap
(
8
,
8
,
1
,
1
,
p
t
rn
);
hbrushPattern
=
CreatePatternBrush
(
hbitmap
);
DeleteObject
(
hbitmap
);
}
...
...
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