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
d20c6cf8
Commit
d20c6cf8
authored
May 24, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
May 24, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed more boolean comparisons against TRUE.
parent
4def9cc0
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
font.c
dlls/gdi/font.c
+1
-1
classes.c
dlls/msi/classes.c
+1
-1
filtergraph.c
dlls/quartz/filtergraph.c
+1
-1
winefile.c
programs/winefile/winefile.c
+2
-2
No files found.
dlls/gdi/font.c
View file @
d20c6cf8
...
...
@@ -2883,7 +2883,7 @@ BOOL WINAPI GetCharABCWidthsFloatW( HDC hdc, UINT first, UINT last, LPABCFLOAT a
if
(
!
abc
)
return
FALSE
;
ret
=
GetCharABCWidthsW
(
hdc
,
first
,
last
,
abc
);
if
(
ret
==
TRUE
)
if
(
ret
)
{
for
(
i
=
first
;
i
<=
last
;
i
++
,
abc
++
,
abcf
++
)
{
...
...
dlls/msi/classes.c
View file @
d20c6cf8
...
...
@@ -716,7 +716,7 @@ static void mark_progid_for_install( MSIPACKAGE* package, MSIPROGID *progid )
if
(
!
progid
)
return
;
if
(
progid
->
InstallMe
==
TRUE
)
if
(
progid
->
InstallMe
)
return
;
progid
->
InstallMe
=
TRUE
;
...
...
dlls/quartz/filtergraph.c
View file @
d20c6cf8
...
...
@@ -1379,7 +1379,7 @@ static HRESULT SendFilterMessage(IMediaControl *iface, fnFoundFilter FoundFilter
break
;
}
}
if
(
source
==
TRUE
)
if
(
source
)
{
TRACE
(
"Found a source filter %p
\n
"
,
pfilter
);
IEnumPins_Reset
(
pEnum
);
...
...
programs/winefile/winefile.c
View file @
d20c6cf8
...
...
@@ -2235,7 +2235,7 @@ static LRESULT CALLBACK FrameWndProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPARAM
switch
(
nmsg
)
{
case
WM_CLOSE
:
if
(
Globals
.
saveSettings
==
TRUE
)
if
(
Globals
.
saveSettings
)
save_registry_settings
();
DestroyWindow
(
hwnd
);
...
...
@@ -2396,7 +2396,7 @@ static LRESULT CALLBACK FrameWndProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPARAM
case
ID_VIEW_SAVESETTINGS
:
Globals
.
saveSettings
=
!
Globals
.
saveSettings
;
CheckMenuItem
(
Globals
.
hMenuOptions
,
ID_VIEW_SAVESETTINGS
,
Globals
.
saveSettings
==
TRUE
?
MF_CHECKED
:
MF_UNCHECKED
);
Globals
.
saveSettings
?
MF_CHECKED
:
MF_UNCHECKED
);
break
;
case
ID_EXECUTE
:
{
...
...
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