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
ddaaa54b
Commit
ddaaa54b
authored
Sep 11, 2011
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 12, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winhlp32: Add parentheses to clarify the precedence between '&' and '&&'.
parent
f5dede7c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
hlpfile.c
programs/winhlp32/hlpfile.c
+7
-7
No files found.
programs/winhlp32/hlpfile.c
View file @
ddaaa54b
...
...
@@ -1367,14 +1367,14 @@ static BOOL HLPFILE_BrowseParagraph(HLPFILE_PAGE* page, struct RtfData* rd,
BYTE
brdr
=
*
format
++
;
short
w
;
if
(
brdr
&
0x01
&&
!
HLPFILE_RtfAddControl
(
rd
,
"
\\
box"
))
goto
done
;
if
(
brdr
&
0x02
&&
!
HLPFILE_RtfAddControl
(
rd
,
"
\\
brdrt"
))
goto
done
;
if
(
brdr
&
0x04
&&
!
HLPFILE_RtfAddControl
(
rd
,
"
\\
brdrl"
))
goto
done
;
if
(
brdr
&
0x08
&&
!
HLPFILE_RtfAddControl
(
rd
,
"
\\
brdrb"
))
goto
done
;
if
(
brdr
&
0x10
&&
!
HLPFILE_RtfAddControl
(
rd
,
"
\\
brdrr"
))
goto
done
;
if
(
brdr
&
0x20
&&
!
HLPFILE_RtfAddControl
(
rd
,
"
\\
brdrth"
))
goto
done
;
if
(
(
brdr
&
0x01
)
&&
!
HLPFILE_RtfAddControl
(
rd
,
"
\\
box"
))
goto
done
;
if
(
(
brdr
&
0x02
)
&&
!
HLPFILE_RtfAddControl
(
rd
,
"
\\
brdrt"
))
goto
done
;
if
(
(
brdr
&
0x04
)
&&
!
HLPFILE_RtfAddControl
(
rd
,
"
\\
brdrl"
))
goto
done
;
if
(
(
brdr
&
0x08
)
&&
!
HLPFILE_RtfAddControl
(
rd
,
"
\\
brdrb"
))
goto
done
;
if
(
(
brdr
&
0x10
)
&&
!
HLPFILE_RtfAddControl
(
rd
,
"
\\
brdrr"
))
goto
done
;
if
(
(
brdr
&
0x20
)
&&
!
HLPFILE_RtfAddControl
(
rd
,
"
\\
brdrth"
))
goto
done
;
if
(
!
(
brdr
&
0x20
)
&&
!
HLPFILE_RtfAddControl
(
rd
,
"
\\
brdrs"
))
goto
done
;
if
(
brdr
&
0x40
&&
!
HLPFILE_RtfAddControl
(
rd
,
"
\\
brdrdb"
))
goto
done
;
if
(
(
brdr
&
0x40
)
&&
!
HLPFILE_RtfAddControl
(
rd
,
"
\\
brdrdb"
))
goto
done
;
/* 0x80: unknown */
w
=
GET_SHORT
(
format
,
0
);
format
+=
2
;
...
...
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