Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
afc95d4a
Commit
afc95d4a
authored
Jul 11, 2008
by
Andrew Talbot
Committed by
Alexandre Julliard
Jul 14, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Remove unneeded address-of operators from array names.
parent
dd0a2242
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
exticon.c
dlls/user32/exticon.c
+1
-1
nonclient.c
dlls/user32/nonclient.c
+1
-1
No files found.
dlls/user32/exticon.c
View file @
afc95d4a
...
...
@@ -776,7 +776,7 @@ UINT WINAPI PrivateExtractIconExW (
cxsmicon
=
GetSystemMetrics
(
SM_CXSMICON
);
cysmicon
=
GetSystemMetrics
(
SM_CYSMICON
);
ret
=
ICO_ExtractIconExW
(
lpwstrFile
,
(
HICON
*
)
&
hIcon
,
nIndex
,
2
,
cxicon
|
(
cxsmicon
<<
16
),
ret
=
ICO_ExtractIconExW
(
lpwstrFile
,
(
HICON
*
)
hIcon
,
nIndex
,
2
,
cxicon
|
(
cxsmicon
<<
16
),
cyicon
|
(
cysmicon
<<
16
),
NULL
,
LR_DEFAULTCOLOR
);
*
phIconLarge
=
hIcon
[
0
];
*
phIconSmall
=
hIcon
[
1
];
...
...
dlls/user32/nonclient.c
View file @
afc95d4a
...
...
@@ -1648,7 +1648,7 @@ BOOL WINAPI GetTitleBarInfo(HWND hwnd, PTITLEBARINFO tbi) {
tbi
->
rcTitleBar
.
left
+=
GetSystemMetrics
(
SM_CXSIZE
);
}
ZeroMemory
(
&
tbi
->
rgstate
,
sizeof
(
tbi
->
rgstate
));
ZeroMemory
(
tbi
->
rgstate
,
sizeof
(
tbi
->
rgstate
));
/* Does the title bar always have STATE_SYSTEM_FOCUSABLE?
* Under XP it seems to
*/
...
...
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