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
458c7292
Commit
458c7292
authored
May 21, 2008
by
James Hawkins
Committed by
Alexandre Julliard
May 22, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Fix a test that fails in almost all reports.
parent
6848da72
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
listbox.c
dlls/user32/tests/listbox.c
+3
-1
No files found.
dlls/user32/tests/listbox.c
View file @
458c7292
...
...
@@ -254,7 +254,9 @@ static LRESULT WINAPI main_window_proc(HWND hwnd, UINT msg, WPARAM wparam, LPARA
rc_client
.
left
,
rc_client
.
top
,
rc_client
.
right
,
rc_client
.
bottom
);
GetClipBox
(
dis
->
hDC
,
&
rc_clip
);
trace
(
"clip rect (%d,%d-%d,%d)
\n
"
,
rc_clip
.
left
,
rc_clip
.
top
,
rc_clip
.
right
,
rc_clip
.
bottom
);
ok
(
EqualRect
(
&
rc_client
,
&
rc_clip
),
"client rect of the listbox should be equal to the clip box
\n
"
);
ok
(
EqualRect
(
&
rc_client
,
&
rc_clip
)
||
IsRectEmpty
(
&
rc_clip
),
"client rect of the listbox should be equal to the clip box,"
"or the clip box should be empty
\n
"
);
trace
(
"rcItem (%d,%d-%d,%d)
\n
"
,
dis
->
rcItem
.
left
,
dis
->
rcItem
.
top
,
dis
->
rcItem
.
right
,
dis
->
rcItem
.
bottom
);
...
...
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