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
739bdaeb
Commit
739bdaeb
authored
Sep 30, 2008
by
Rob Shearman
Committed by
Alexandre Julliard
Sep 30, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uxtheme: SetPropW returns a BOOL not an HRESULT.
Therefore fix the code to handle SetPropW failing with this in mind. (Found by PreFast.)
parent
8a6f1655
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
draw.c
dlls/uxtheme/draw.c
+4
-5
No files found.
dlls/uxtheme/draw.c
View file @
739bdaeb
...
...
@@ -52,19 +52,18 @@ extern ATOM atDialogThemeEnabled;
HRESULT
WINAPI
EnableThemeDialogTexture
(
HWND
hwnd
,
DWORD
dwFlags
)
{
static
const
WCHAR
szTab
[]
=
{
'T'
,
'a'
,
'b'
,
0
};
HRESULT
hr
;
BOOL
res
;
TRACE
(
"(%p,0x%08x
\n
"
,
hwnd
,
dwFlags
);
hr
=
SetPropW
(
hwnd
,
(
LPCWSTR
)
MAKEINTATOM
(
atDialogThemeEnabled
),
res
=
SetPropW
(
hwnd
,
(
LPCWSTR
)
MAKEINTATOM
(
atDialogThemeEnabled
),
(
HANDLE
)(
dwFlags
|
0x80000000
));
/* 0x80000000 serves as a "flags set" flag */
if
(
FAILED
(
hr
)
)
return
hr
;
if
(
!
res
)
return
HRESULT_FROM_WIN32
(
GetLastError
())
;
if
(
dwFlags
&
ETDT_USETABTEXTURE
)
return
SetWindowTheme
(
hwnd
,
NULL
,
szTab
);
else
return
SetWindowTheme
(
hwnd
,
NULL
,
NULL
);
return
S_OK
;
}
/***********************************************************************
...
...
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