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
88202b3d
Commit
88202b3d
authored
Dec 15, 2014
by
Nikolay Sivov
Committed by
Alexandre Julliard
Dec 15, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Remove some useless returns.
parent
0bfe8b44
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
5 deletions
+0
-5
freetype.c
dlls/gdi32/freetype.c
+0
-5
No files found.
dlls/gdi32/freetype.c
View file @
88202b3d
...
...
@@ -995,7 +995,6 @@ static void DumpSubstList(void)
TRACE
(
"%s -> %s
\n
"
,
debugstr_w
(
psub
->
from
.
name
),
debugstr_w
(
psub
->
to
.
name
));
}
return
;
}
static
LPWSTR
strdupW
(
LPCWSTR
p
)
...
...
@@ -2215,7 +2214,6 @@ static void DumpFontList(void)
TRACE
(
"
\n
"
);
}
}
return
;
}
/***********************************************************
...
...
@@ -3011,7 +3009,6 @@ static void update_reg_entries(void)
if
(
external_key
)
RegCloseKey
(
external_key
);
if
(
win9x_key
)
RegCloseKey
(
win9x_key
);
if
(
winnt_key
)
RegCloseKey
(
winnt_key
);
return
;
}
static
void
delete_external_font_keys
(
void
)
...
...
@@ -4658,7 +4655,6 @@ static void calc_hash(FONT_DESC *pfd)
}
hash
^=
!
pfd
->
can_use_bitmap
;
pfd
->
hash
=
hash
;
return
;
}
static
GdiFont
*
find_in_cache
(
HFONT
hfont
,
const
LOGFONTW
*
plf
,
const
FMAT2
*
pmat
,
BOOL
can_use_bitmap
)
...
...
@@ -5839,7 +5835,6 @@ static void FTVectorToPOINTFX(FT_Vector *vec, POINTFX *pt)
pt
->
y
.
value
=
vec
->
y
>>
6
;
pt
->
y
.
fract
=
(
vec
->
y
&
0x3f
)
<<
10
;
pt
->
y
.
fract
|=
((
pt
->
y
.
fract
>>
6
)
|
(
pt
->
y
.
fract
>>
12
));
return
;
}
/***************************************************
...
...
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