Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
4d3a7aa2
Commit
4d3a7aa2
authored
Aug 08, 2012
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Aug 13, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Avoid TRUE:FALSE conditional expressions.
parent
69d44b54
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
dib.c
dlls/gdi32/dib.c
+1
-1
freetype.c
dlls/gdi32/freetype.c
+1
-1
No files found.
dlls/gdi32/dib.c
View file @
4d3a7aa2
...
...
@@ -1390,7 +1390,7 @@ INT WINAPI GetDIBits(
ret
=
lines
;
}
else
ret
=
empty_rect
?
FALSE
:
TRUE
;
ret
=
!
empty_rect
;
if
(
coloruse
==
DIB_PAL_COLORS
)
{
...
...
dlls/gdi32/freetype.c
View file @
4d3a7aa2
...
...
@@ -1754,7 +1754,7 @@ static Face *create_face( FT_Face ft_face, FT_Long face_index, const char *file,
}
face
->
vertical
=
vertical
;
face
->
external
=
(
flags
&
ADDFONT_EXTERNAL_FONT
)
?
TRUE
:
FALSE
;
face
->
external
=
(
flags
&
ADDFONT_EXTERNAL_FONT
)
!=
0
;
face
->
family
=
NULL
;
face
->
cached_enum_data
=
NULL
;
...
...
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