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
7399177f
Commit
7399177f
authored
Jun 05, 2011
by
Marko Nikolic
Committed by
Alexandre Julliard
Jun 06, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/tests: Removed sign comparison warning in imagelist tests.
parent
38bf3a6b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
imagelist.c
dlls/comctl32/tests/imagelist.c
+6
-5
No files found.
dlls/comctl32/tests/imagelist.c
View file @
7399177f
...
...
@@ -893,7 +893,8 @@ static void image_list_init(HIMAGELIST himl)
{
HBITMAP
hbm
;
char
comment
[
16
];
INT
n
=
1
,
i
;
INT
n
=
1
;
DWORD
i
;
static
const
struct
test_data
{
BYTE
grey
;
...
...
@@ -1757,15 +1758,15 @@ static void test_iconsize(void)
ok
(
!
ret
,
"got %d
\n
"
,
ret
);
/* doesn't touch return pointers */
cx
=
0x
deadbeef
;
cx
=
0x
1abe11ed
;
ret
=
ImageList_GetIconSize
(
himl
,
&
cx
,
NULL
);
ok
(
!
ret
,
"got %d
\n
"
,
ret
);
ok
(
cx
==
0x
deadbeef
,
"got %d
\n
"
,
cx
);
ok
(
cx
==
0x
1abe11ed
,
"got %d
\n
"
,
cx
);
cy
=
0x
deadbeef
;
cy
=
0x
1abe11ed
;
ret
=
ImageList_GetIconSize
(
himl
,
NULL
,
&
cy
);
ok
(
!
ret
,
"got %d
\n
"
,
ret
);
ok
(
cy
==
0x
deadbeef
,
"got %d
\n
"
,
cy
);
ok
(
cy
==
0x
1abe11ed
,
"got %d
\n
"
,
cy
);
ImageList_Destroy
(
himl
);
}
...
...
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