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
6b0875a6
Commit
6b0875a6
authored
Apr 04, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 04, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Use helper for IHTMLStyle::put_zIndex implementation.
parent
6e97e7e2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
16 deletions
+1
-16
htmlstyle.c
dlls/mshtml/htmlstyle.c
+1
-16
No files found.
dlls/mshtml/htmlstyle.c
View file @
6b0875a6
...
...
@@ -2190,22 +2190,7 @@ static HRESULT WINAPI HTMLStyle_put_zIndex(IHTMLStyle *iface, VARIANT v)
TRACE
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
));
switch
(
V_VT
(
&
v
))
{
case
VT_BSTR
:
return
set_style_attr
(
This
,
STYLEID_Z_INDEX
,
V_BSTR
(
&
v
),
0
);
case
VT_I4
:
{
WCHAR
value
[
14
];
static
const
WCHAR
format
[]
=
{
'%'
,
'd'
,
0
};
wsprintfW
(
value
,
format
,
V_I4
(
&
v
));
return
set_style_attr
(
This
,
STYLEID_Z_INDEX
,
value
,
0
);
}
default:
FIXME
(
"unimplemented vt %d
\n
"
,
V_VT
(
&
v
));
return
E_NOTIMPL
;
}
return
S_OK
;
return
set_nsstyle_attr_var
(
This
->
nsstyle
,
STYLEID_Z_INDEX
,
&
v
,
0
);
}
static
HRESULT
WINAPI
HTMLStyle_get_zIndex
(
IHTMLStyle
*
iface
,
VARIANT
*
p
)
...
...
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