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
fe947be7
Commit
fe947be7
authored
Jun 07, 2012
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jun 07, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/tests: Remove stray backslashes at end of lines.
parent
8e4d76bf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
8 deletions
+4
-8
tab.c
dlls/comctl32/tests/tab.c
+4
-8
No files found.
dlls/comctl32/tests/tab.c
View file @
fe947be7
...
...
@@ -47,15 +47,11 @@ static void CheckSize(HWND hwnd, INT width, INT height, const char *msg, int lin
SendMessage
(
hwnd
,
TCM_GETITEMRECT
,
0
,
(
LPARAM
)
&
r
);
if
(
width
>=
0
&&
height
<
0
)
{
ok_
(
__FILE__
,
line
)
(
width
==
r
.
right
-
r
.
left
,
"%s: Expected width [%d] got [%d]
\n
"
,
\
msg
,
width
,
r
.
right
-
r
.
left
);
}
ok_
(
__FILE__
,
line
)
(
width
==
r
.
right
-
r
.
left
,
"%s: Expected width [%d] got [%d]
\n
"
,
msg
,
width
,
r
.
right
-
r
.
left
);
else
if
(
height
>=
0
&&
width
<
0
)
{
ok_
(
__FILE__
,
line
)
(
height
==
r
.
bottom
-
r
.
top
,
"%s: Expected height [%d] got [%d]
\n
"
,
\
msg
,
height
,
r
.
bottom
-
r
.
top
);
}
ok_
(
__FILE__
,
line
)
(
height
==
r
.
bottom
-
r
.
top
,
"%s: Expected height [%d] got [%d]
\n
"
,
msg
,
height
,
r
.
bottom
-
r
.
top
);
else
ok_
(
__FILE__
,
line
)
((
width
==
r
.
right
-
r
.
left
)
&&
(
height
==
r
.
bottom
-
r
.
top
),
"%s: Expected [%d,%d] got [%d,%d]
\n
"
,
msg
,
width
,
height
,
...
...
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