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
a6190338
Commit
a6190338
authored
Sep 05, 2012
by
Erich Hoover
Committed by
Alexandre Julliard
Sep 05, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hhctrl.ocx: Do not permit a NULL caption for HtmlHelp windows.
parent
56503620
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
chm.c
dlls/hhctrl.ocx/chm.c
+2
-2
No files found.
dlls/hhctrl.ocx/chm.c
View file @
a6190338
...
@@ -366,10 +366,8 @@ BOOL LoadWinTypeFromCHM(HHInfo *info)
...
@@ -366,10 +366,8 @@ BOOL LoadWinTypeFromCHM(HHInfo *info)
wintype
.
cbStruct
=
sizeof
(
wintype
);
wintype
.
cbStruct
=
sizeof
(
wintype
);
wintype
.
fUniCodeStrings
=
TRUE
;
wintype
.
fUniCodeStrings
=
TRUE
;
wintype
.
pszType
=
pszType
=
strdupW
(
info
->
pCHMInfo
->
defWindow
?
info
->
pCHMInfo
->
defWindow
:
defaultwinW
);
wintype
.
pszType
=
pszType
=
strdupW
(
info
->
pCHMInfo
->
defWindow
?
info
->
pCHMInfo
->
defWindow
:
defaultwinW
);
wintype
.
pszFile
=
pszFile
=
strdupW
(
info
->
pCHMInfo
->
defTopic
?
info
->
pCHMInfo
->
defTopic
:
null
);
wintype
.
pszToc
=
pszToc
=
strdupW
(
info
->
pCHMInfo
->
defToc
?
info
->
pCHMInfo
->
defToc
:
null
);
wintype
.
pszToc
=
pszToc
=
strdupW
(
info
->
pCHMInfo
->
defToc
?
info
->
pCHMInfo
->
defToc
:
null
);
wintype
.
pszIndex
=
pszIndex
=
strdupW
(
null
);
wintype
.
pszIndex
=
pszIndex
=
strdupW
(
null
);
wintype
.
pszCaption
=
pszCaption
=
strdupW
(
info
->
pCHMInfo
->
defTitle
?
info
->
pCHMInfo
->
defTitle
:
null
);
wintype
.
fsValidMembers
=
0
;
wintype
.
fsValidMembers
=
0
;
wintype
.
fsWinProperties
=
HHWIN_PROP_TRI_PANE
;
wintype
.
fsWinProperties
=
HHWIN_PROP_TRI_PANE
;
wintype
.
dwStyles
=
WS_POPUP
;
wintype
.
dwStyles
=
WS_POPUP
;
...
@@ -380,6 +378,8 @@ BOOL LoadWinTypeFromCHM(HHInfo *info)
...
@@ -380,6 +378,8 @@ BOOL LoadWinTypeFromCHM(HHInfo *info)
/* merge the new data with any pre-existing HH_WINTYPE structure */
/* merge the new data with any pre-existing HH_WINTYPE structure */
MergeChmProperties
(
&
wintype
,
info
,
FALSE
);
MergeChmProperties
(
&
wintype
,
info
,
FALSE
);
if
(
!
info
->
WinType
.
pszCaption
)
info
->
WinType
.
pszCaption
=
info
->
stringsW
.
pszCaption
=
strdupW
(
info
->
pCHMInfo
->
defTitle
?
info
->
pCHMInfo
->
defTitle
:
null
);
if
(
!
info
->
WinType
.
pszFile
)
if
(
!
info
->
WinType
.
pszFile
)
info
->
WinType
.
pszFile
=
info
->
stringsW
.
pszFile
=
strdupW
(
info
->
pCHMInfo
->
defTopic
?
info
->
pCHMInfo
->
defTopic
:
null
);
info
->
WinType
.
pszFile
=
info
->
stringsW
.
pszFile
=
strdupW
(
info
->
pCHMInfo
->
defTopic
?
info
->
pCHMInfo
->
defTopic
:
null
);
if
(
!
info
->
WinType
.
pszToc
)
if
(
!
info
->
WinType
.
pszToc
)
...
...
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