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
35707aee
Commit
35707aee
authored
May 22, 2011
by
Gerald Pfeifer
Committed by
Alexandre Julliard
May 23, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/tests: Add casts to avoid comparison of different int types.
parent
d73b27d8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
tab.c
dlls/comctl32/tests/tab.c
+4
-3
No files found.
dlls/comctl32/tests/tab.c
View file @
35707aee
...
...
@@ -1313,6 +1313,7 @@ static void test_TCM_SETITEMEXTRA(void)
static
void
test_TCS_OWNERDRAWFIXED
(
void
)
{
LPARAM
lparam
,
lparam2
;
ULONG_PTR
itemdata
;
TCITEMA
item
;
HWND
hTab
;
BOOL
ret
;
...
...
@@ -1335,9 +1336,9 @@ static void test_TCS_OWNERDRAWFIXED(void)
ShowWindow
(
hTab
,
SW_SHOW
);
RedrawWindow
(
hTab
,
NULL
,
0
,
RDW_UPDATENOW
);
lparam
=
0
;
memset
(
&
lparam
,
0xde
,
4
);
ok
(
g_drawitem
.
itemData
==
lparam
,
"got %lx, expected %lx
\n
"
,
g_drawitem
.
itemData
,
lparam
);
itemdata
=
0
;
memset
(
&
itemdata
,
0xde
,
4
);
ok
(
g_drawitem
.
itemData
==
itemdata
,
"got %lx, expected %lx
\n
"
,
g_drawitem
.
itemData
,
itemdata
);
DestroyWindow
(
hTab
);
...
...
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