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
c66f0019
Commit
c66f0019
authored
May 07, 2014
by
Huw Davies
Committed by
Alexandre Julliard
May 07, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: In a Hebrew locale the last char of a symbol font is reported as 0xf896 rather than 0xf0ff.
parent
87bfb306
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
freetype.c
dlls/gdi32/freetype.c
+3
-0
font.c
dlls/gdi32/tests/font.c
+3
-0
No files found.
dlls/gdi32/freetype.c
View file @
c66f0019
...
...
@@ -7390,6 +7390,9 @@ static BOOL get_outline_text_metrics(GdiFont *font)
TM
.
tmFirstChar
=
0
;
switch
(
GetACP
())
{
case
1255
:
/* Hebrew */
TM
.
tmLastChar
=
0xf896
;
break
;
case
1257
:
/* Baltic */
TM
.
tmLastChar
=
0xf8fd
;
break
;
...
...
dlls/gdi32/tests/font.c
View file @
c66f0019
...
...
@@ -3543,6 +3543,9 @@ static void test_text_metrics(const LOGFONTA *lf, const NEWTEXTMETRICA *ntm)
expect_first_W
=
0
;
switch
(
GetACP
())
{
case
1255
:
/* Hebrew */
expect_last_W
=
0xf896
;
break
;
case
1257
:
/* Baltic */
expect_last_W
=
0xf8fd
;
break
;
...
...
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