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
10fba143
Commit
10fba143
authored
Mar 06, 2015
by
Jacek Caban
Committed by
Alexandre Julliard
Mar 06, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Return S_OK in IHTMLPluginsCollection::refresh.
parent
49cdebad
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
omnavigator.c
dlls/mshtml/omnavigator.c
+5
-2
dom.c
dlls/mshtml/tests/dom.c
+6
-0
No files found.
dlls/mshtml/omnavigator.c
View file @
10fba143
...
...
@@ -459,8 +459,11 @@ static HRESULT WINAPI HTMLPluginsCollection_get_length(IHTMLPluginsCollection *i
static
HRESULT
WINAPI
HTMLPluginsCollection_refresh
(
IHTMLPluginsCollection
*
iface
,
VARIANT_BOOL
reload
)
{
HTMLPluginsCollection
*
This
=
impl_from_IHTMLPluginsCollection
(
iface
);
FIXME
(
"(%p)->(%x)
\n
"
,
This
,
reload
);
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%x)
\n
"
,
This
,
reload
);
/* Nothing to do here. */
return
S_OK
;
}
static
const
IHTMLPluginsCollectionVtbl
HTMLPluginsCollectionVtbl
=
{
...
...
dlls/mshtml/tests/dom.c
View file @
10fba143
...
...
@@ -5295,6 +5295,12 @@ static void test_plugins_col(IHTMLDocument2 *doc)
ok
(
hres
==
S_OK
,
"get_length failed: %08x
\n
"
,
hres
);
ok
(
!
len
,
"length = %d
\n
"
,
len
);
hres
=
IHTMLPluginsCollection_refresh
(
col
,
VARIANT_FALSE
);
ok
(
hres
==
S_OK
,
"refresh failed: %08x
\n
"
,
hres
);
hres
=
IHTMLPluginsCollection_refresh
(
col
,
VARIANT_TRUE
);
ok
(
hres
==
S_OK
,
"refresh failed: %08x
\n
"
,
hres
);
ref
=
IHTMLPluginsCollection_Release
(
col
);
ok
(
!
ref
,
"ref=%d
\n
"
,
ref
);
...
...
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