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
4f0c6a31
Commit
4f0c6a31
authored
Jun 26, 2009
by
Francois Gouget
Committed by
Alexandre Julliard
Jun 26, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32/tests: Fix the trailing '\n' of a few ok() calls.
parent
e7dc4ed0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
font.c
dlls/gdi32/tests/font.c
+3
-3
No files found.
dlls/gdi32/tests/font.c
View file @
4f0c6a31
...
...
@@ -2936,7 +2936,7 @@ void test_GetTextMetrics2( const char *fontname)
of
=
SelectObject
(
hdc
,
hf
);
ret
=
GetObjectA
(
hf
,
sizeof
(
lf
),
&
lf
);
ret
=
GetTextMetricsA
(
hdc
,
&
tm
);
ok
(
ret
,
"GetTextMetricsA error %u
,
"
,
GetLastError
());
ok
(
ret
,
"GetTextMetricsA error %u
\n
"
,
GetLastError
());
avecharw
[
0
]
=
tm
.
tmAveCharWidth
;
maxcharw
[
0
]
=
tm
.
tmMaxCharWidth
;
SelectObject
(
hdc
,
of
);
...
...
@@ -2950,7 +2950,7 @@ void test_GetTextMetrics2( const char *fontname)
of
=
SelectObject
(
hdc
,
hf
);
ret
=
GetObjectA
(
hf
,
sizeof
(
lf
),
&
lf
);
ret
=
GetTextMetricsA
(
hdc
,
&
tm
);
ok
(
ret
,
"GetTextMetricsA error %u
,
"
,
GetLastError
());
ok
(
ret
,
"GetTextMetricsA error %u
\n
"
,
GetLastError
());
avecharw
[
1
]
=
tm
.
tmAveCharWidth
;
maxcharw
[
1
]
=
tm
.
tmMaxCharWidth
;
SelectObject
(
hdc
,
of
);
...
...
@@ -2964,7 +2964,7 @@ void test_GetTextMetrics2( const char *fontname)
of
=
SelectObject
(
hdc
,
hf
);
ret
=
GetObjectA
(
hf
,
sizeof
(
lf
),
&
lf
);
ret
=
GetTextMetricsA
(
hdc
,
&
tm
);
ok
(
ret
,
"GetTextMetricsA error %u
,
"
,
GetLastError
());
ok
(
ret
,
"GetTextMetricsA error %u
\n
"
,
GetLastError
());
avecharw
[
2
]
=
tm
.
tmAveCharWidth
;
maxcharw
[
2
]
=
tm
.
tmMaxCharWidth
;
SelectObject
(
hdc
,
of
);
...
...
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