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
4e7a0763
Commit
4e7a0763
authored
Sep 19, 2008
by
Owen Rudge
Committed by
Alexandre Julliard
Sep 19, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Check CPL_NEWINQUIRE message in control panel applets if we can't…
shell32: Check CPL_NEWINQUIRE message in control panel applets if we can't retrieve valid strings/icon.
parent
5e07e0cf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
control.c
dlls/shell32/control.c
+16
-0
No files found.
dlls/shell32/control.c
View file @
4e7a0763
...
...
@@ -119,6 +119,22 @@ CPlApplet* Control_LoadApplet(HWND hWnd, LPCWSTR cmd, CPanel* panel)
LoadStringW
(
applet
->
hModule
,
info
.
idInfo
,
applet
->
info
[
i
].
szInfo
,
sizeof
(
applet
->
info
[
i
].
szInfo
)
/
sizeof
(
WCHAR
));
/* some broken control panels seem to return incorrect values in CPL_INQUIRE,
but proper data in CPL_NEWINQUIRE. if we get an empty string or a null
icon, see what we can get from CPL_NEWINQUIRE */
if
((
applet
->
info
[
i
].
szName
==
0
)
||
(
lstrlenW
(
applet
->
info
[
i
].
szName
)
==
0
))
info
.
idName
=
CPL_DYNAMIC_RES
;
/* zero-length szInfo may not be a buggy applet, but it doesn't hurt for us
to check anyway */
if
((
applet
->
info
[
i
].
szInfo
==
0
)
||
(
lstrlenW
(
applet
->
info
[
i
].
szInfo
)
==
0
))
info
.
idInfo
=
CPL_DYNAMIC_RES
;
if
(
applet
->
info
[
i
].
hIcon
==
NULL
)
info
.
idIcon
=
CPL_DYNAMIC_RES
;
if
((
info
.
idIcon
==
CPL_DYNAMIC_RES
)
||
(
info
.
idName
==
CPL_DYNAMIC_RES
)
||
(
info
.
idInfo
==
CPL_DYNAMIC_RES
))
{
applet
->
proc
(
hWnd
,
CPL_NEWINQUIRE
,
i
,
(
LPARAM
)
&
newinfo
);
...
...
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