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
dc5dd6ac
Commit
dc5dd6ac
authored
Jul 09, 2016
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jul 10, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
explorerframe/tests: Use EqualRect() instead of open coding it.
Signed-off-by:
Michael Stefaniuc
<
mstefani@redhat.de
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2ddbadcc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
nstc.c
dlls/explorerframe/tests/nstc.c
+2
-4
No files found.
dlls/explorerframe/tests/nstc.c
View file @
dc5dd6ac
...
...
@@ -1603,10 +1603,8 @@ static void test_basics(void)
/* The NamespaceTreeControl returns screen coordinates. */
MapWindowPoints
(
NULL
,
hwnd
,
(
POINT
*
)
&
rc
,
2
);
ok
(
rc
.
left
==
tv_rc
.
left
,
"Differed, got %d and %d
\n
"
,
rc
.
left
,
tv_rc
.
left
);
ok
(
rc
.
top
==
tv_rc
.
top
,
"Differed, got %d and %d
\n
"
,
rc
.
top
,
tv_rc
.
top
);
ok
(
rc
.
right
==
tv_rc
.
right
,
"Differed, got %d and %d
\n
"
,
rc
.
right
,
tv_rc
.
right
);
ok
(
rc
.
bottom
==
tv_rc
.
bottom
,
"Differed, got %d and %d
\n
"
,
rc
.
bottom
,
tv_rc
.
bottom
);
ok
(
EqualRect
(
&
rc
,
&
tv_rc
),
"Differed, got %s and %s
\n
"
,
wine_dbgstr_rect
(
&
rc
),
wine_dbgstr_rect
(
&
tv_rc
));
/* Save the height and compare to that of other items.
Observed values: 18, 19, 21 */
...
...
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