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
ae0a4849
Commit
ae0a4849
authored
Oct 25, 2010
by
Austin Lund
Committed by
Alexandre Julliard
Oct 25, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus/tests: Fix GetLogFont charset tests for Asian platforms.
parent
86c39000
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
font.c
dlls/gdiplus/tests/font.c
+4
-2
No files found.
dlls/gdiplus/tests/font.c
View file @
ae0a4849
...
...
@@ -129,7 +129,8 @@ static void test_logfont(void)
expect
(
0
,
lfa2
.
lfItalic
);
expect
(
0
,
lfa2
.
lfUnderline
);
expect
(
0
,
lfa2
.
lfStrikeOut
);
expect
(
GetTextCharset
(
hdc
),
lfa2
.
lfCharSet
);
ok
(
lfa2
.
lfCharSet
==
GetTextCharset
(
hdc
)
||
lfa2
.
lfCharSet
==
ANSI_CHARSET
,
"Expected %x or %x, got %x
\n
"
,
GetTextCharset
(
hdc
),
ANSI_CHARSET
,
lfa2
.
lfCharSet
);
expect
(
0
,
lfa2
.
lfOutPrecision
);
expect
(
0
,
lfa2
.
lfClipPrecision
);
expect
(
0
,
lfa2
.
lfQuality
);
...
...
@@ -159,7 +160,8 @@ static void test_logfont(void)
expect
(
TRUE
,
lfa2
.
lfItalic
);
expect
(
TRUE
,
lfa2
.
lfUnderline
);
expect
(
TRUE
,
lfa2
.
lfStrikeOut
);
expect
(
GetTextCharset
(
hdc
),
lfa2
.
lfCharSet
);
ok
(
lfa2
.
lfCharSet
==
GetTextCharset
(
hdc
)
||
lfa2
.
lfCharSet
==
ANSI_CHARSET
,
"Expected %x or %x, got %x
\n
"
,
GetTextCharset
(
hdc
),
ANSI_CHARSET
,
lfa2
.
lfCharSet
);
expect
(
0
,
lfa2
.
lfOutPrecision
);
expect
(
0
,
lfa2
.
lfClipPrecision
);
expect
(
0
,
lfa2
.
lfQuality
);
...
...
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