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
5b2dd5d8
Commit
5b2dd5d8
authored
Jun 29, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Jun 29, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Return success in :HTMLStyle3::scrollbar* setters.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
4633304c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
htmlstyle.c
dlls/mshtml/htmlstyle.c
+8
-8
No files found.
dlls/mshtml/htmlstyle.c
View file @
5b2dd5d8
...
...
@@ -4170,7 +4170,7 @@ static HRESULT WINAPI HTMLStyle3_put_scrollbarBaseColor(IHTMLStyle3 *iface, VARI
{
HTMLStyle
*
This
=
impl_from_IHTMLStyle3
(
iface
);
FIXME
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
));
return
E_NOTIMPL
;
return
S_OK
;
}
static
HRESULT
WINAPI
HTMLStyle3_get_scrollbarBaseColor
(
IHTMLStyle3
*
iface
,
VARIANT
*
p
)
...
...
@@ -4184,7 +4184,7 @@ static HRESULT WINAPI HTMLStyle3_put_scrollbarFaceColor(IHTMLStyle3 *iface, VARI
{
HTMLStyle
*
This
=
impl_from_IHTMLStyle3
(
iface
);
FIXME
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
));
return
E_NOTIMPL
;
return
S_OK
;
}
static
HRESULT
WINAPI
HTMLStyle3_get_scrollbarFaceColor
(
IHTMLStyle3
*
iface
,
VARIANT
*
p
)
...
...
@@ -4198,7 +4198,7 @@ static HRESULT WINAPI HTMLStyle3_put_scrollbar3dLightColor(IHTMLStyle3 *iface, V
{
HTMLStyle
*
This
=
impl_from_IHTMLStyle3
(
iface
);
FIXME
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
));
return
E_NOTIMPL
;
return
S_OK
;
}
static
HRESULT
WINAPI
HTMLStyle3_get_scrollbar3dLightColor
(
IHTMLStyle3
*
iface
,
VARIANT
*
p
)
...
...
@@ -4212,7 +4212,7 @@ static HRESULT WINAPI HTMLStyle3_put_scrollbarShadowColor(IHTMLStyle3 *iface, VA
{
HTMLStyle
*
This
=
impl_from_IHTMLStyle3
(
iface
);
FIXME
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
));
return
E_NOTIMPL
;
return
S_OK
;
}
static
HRESULT
WINAPI
HTMLStyle3_get_scrollbarShadowColor
(
IHTMLStyle3
*
iface
,
VARIANT
*
p
)
...
...
@@ -4226,7 +4226,7 @@ static HRESULT WINAPI HTMLStyle3_put_scrollbarHighlightColor(IHTMLStyle3 *iface,
{
HTMLStyle
*
This
=
impl_from_IHTMLStyle3
(
iface
);
FIXME
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
));
return
E_NOTIMPL
;
return
S_OK
;
}
static
HRESULT
WINAPI
HTMLStyle3_get_scrollbarHighlightColor
(
IHTMLStyle3
*
iface
,
VARIANT
*
p
)
...
...
@@ -4240,7 +4240,7 @@ static HRESULT WINAPI HTMLStyle3_put_scrollbarDarkShadowColor(IHTMLStyle3 *iface
{
HTMLStyle
*
This
=
impl_from_IHTMLStyle3
(
iface
);
FIXME
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
));
return
E_NOTIMPL
;
return
S_OK
;
}
static
HRESULT
WINAPI
HTMLStyle3_get_scrollbarDarkShadowColor
(
IHTMLStyle3
*
iface
,
VARIANT
*
p
)
...
...
@@ -4254,7 +4254,7 @@ static HRESULT WINAPI HTMLStyle3_put_scrollbarArrowColor(IHTMLStyle3 *iface, VAR
{
HTMLStyle
*
This
=
impl_from_IHTMLStyle3
(
iface
);
FIXME
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
));
return
E_NOTIMPL
;
return
S_OK
;
}
static
HRESULT
WINAPI
HTMLStyle3_get_scrollbarArrowColor
(
IHTMLStyle3
*
iface
,
VARIANT
*
p
)
...
...
@@ -4268,7 +4268,7 @@ static HRESULT WINAPI HTMLStyle3_put_scrollbarTrackColor(IHTMLStyle3 *iface, VAR
{
HTMLStyle
*
This
=
impl_from_IHTMLStyle3
(
iface
);
FIXME
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
));
return
E_NOTIMPL
;
return
S_OK
;
}
static
HRESULT
WINAPI
HTMLStyle3_get_scrollbarTrackColor
(
IHTMLStyle3
*
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