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
40734af7
Commit
40734af7
authored
Jul 26, 2001
by
Marcus Meissner
Committed by
Alexandre Julliard
Jul 26, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Be a bit more graceful on NULL property sheet titles.
parent
24352375
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
propsheet.c
dlls/comctl32/propsheet.c
+7
-6
No files found.
dlls/comctl32/propsheet.c
View file @
40734af7
...
...
@@ -302,13 +302,14 @@ BOOL PROPSHEET_CollectPageInfo(LPCPROPSHEETPAGEA lppsp,
{
char
szTitle
[
256
];
if
(
!
LoadStringA
(
lppsp
->
hInstance
,
(
UINT
)
lppsp
->
pszTitle
,
szTitle
,
256
)
)
return
FALSE
;
if
(
LoadStringA
(
lppsp
->
hInstance
,
(
UINT
)
lppsp
->
pszTitle
,
szTitle
,
256
))
{
psInfo
->
proppage
[
index
].
pszText
=
HEAP_strdupAtoW
(
GetProcessHeap
(),
0
,
szTitle
);
}
else
{
psInfo
->
proppage
[
index
].
pszText
=
HEAP_strdupAtoW
(
GetProcessHeap
(),
0
,
"(null)"
);
FIXME
(
"Could not load resource #%04x?
\n
"
,
LOWORD
(
lppsp
->
pszTitle
));
}
psInfo
->
proppage
[
index
].
pszText
=
HEAP_strdupAtoW
(
GetProcessHeap
(),
0
,
szTitle
);
}
else
}
else
psInfo
->
proppage
[
index
].
pszText
=
HEAP_strdupAtoW
(
GetProcessHeap
(),
0
,
lppsp
->
pszTitle
);
...
...
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