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
1f00c01e
Commit
1f00c01e
authored
Apr 09, 2012
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Apr 09, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Add more verbose messages to indicate when a font is being added/replaced/refused to load.
parent
e7a13628
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
freetype.c
dlls/gdi32/freetype.c
+6
-2
No files found.
dlls/gdi32/freetype.c
View file @
1f00c01e
...
...
@@ -1255,12 +1255,14 @@ static BOOL insert_face_in_family_list( Face *face, Family *family )
if
(
face
->
font_version
<=
cursor
->
font_version
)
{
TRACE
(
"Original font is newer so skipping this one
\n
"
);
TRACE
(
"Original font %s is newer so skipping %s
\n
"
,
debugstr_a
(
cursor
->
file
),
debugstr_a
(
face
->
file
));
return
FALSE
;
}
else
{
TRACE
(
"Replacing original with this one
\n
"
);
TRACE
(
"Replacing original %s with %s
\n
"
,
debugstr_a
(
cursor
->
file
),
debugstr_a
(
face
->
file
));
list_add_before
(
&
cursor
->
entry
,
&
face
->
entry
);
face
->
family
=
family
;
list_remove
(
&
cursor
->
entry
);
...
...
@@ -1268,6 +1270,8 @@ static BOOL insert_face_in_family_list( Face *face, Family *family )
return
TRUE
;
}
}
else
TRACE
(
"Adding new %s
\n
"
,
debugstr_a
(
face
->
file
));
if
(
style_order
(
face
)
<
style_order
(
cursor
))
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