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
e2615cc0
Commit
e2615cc0
authored
Dec 16, 2008
by
Nikolay Sivov
Committed by
Alexandre Julliard
Dec 16, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Fix Font test failure on charset mismatch.
parent
7e1b714f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
font.c
dlls/gdiplus/font.c
+1
-0
font.c
dlls/gdiplus/tests/font.c
+2
-2
No files found.
dlls/gdiplus/font.c
View file @
e2615cc0
...
...
@@ -195,6 +195,7 @@ GpStatus WINGDIPAPI GdipCreateFontFromLogfontW(HDC hdc,
(
*
font
)
->
lfw
.
lfHeight
=
-
textmet
.
tmHeight
;
(
*
font
)
->
lfw
.
lfWeight
=
textmet
.
tmWeight
;
(
*
font
)
->
lfw
.
lfCharSet
=
textmet
.
tmCharSet
;
(
*
font
)
->
height
=
1
;
/* FIXME: need NEWTEXTMETRIC.ntmSizeEM here */
(
*
font
)
->
line_spacing
=
textmet
.
tmAscent
+
textmet
.
tmDescent
+
textmet
.
tmExternalLeading
;
...
...
dlls/gdiplus/tests/font.c
View file @
e2615cc0
...
...
@@ -134,7 +134,7 @@ static void test_logfont(void)
expect
(
0
,
lfw2
.
lfItalic
);
expect
(
0
,
lfw2
.
lfUnderline
);
expect
(
0
,
lfw2
.
lfStrikeOut
);
expect
(
0
,
lfw2
.
lfCharSet
);
expect
(
GetTextCharset
(
hdc
)
,
lfw2
.
lfCharSet
);
expect
(
0
,
lfw2
.
lfOutPrecision
);
expect
(
0
,
lfw2
.
lfClipPrecision
);
expect
(
0
,
lfw2
.
lfQuality
);
...
...
@@ -164,7 +164,7 @@ static void test_logfont(void)
expect
(
TRUE
,
lfw2
.
lfItalic
);
expect
(
TRUE
,
lfw2
.
lfUnderline
);
expect
(
TRUE
,
lfw2
.
lfStrikeOut
);
expect
(
0
,
lfw2
.
lfCharSet
);
expect
(
GetTextCharset
(
hdc
)
,
lfw2
.
lfCharSet
);
expect
(
0
,
lfw2
.
lfOutPrecision
);
expect
(
0
,
lfw2
.
lfClipPrecision
);
expect
(
0
,
lfw2
.
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