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
ff349394
Commit
ff349394
authored
Sep 25, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 25, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Return S_OK in plugin host's CanInPlaceActivate implementation.
parent
f9079857
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
pluginhost.c
dlls/mshtml/pluginhost.c
+4
-2
activex.c
dlls/mshtml/tests/activex.c
+3
-0
No files found.
dlls/mshtml/pluginhost.c
View file @
ff349394
...
...
@@ -875,8 +875,10 @@ static HRESULT WINAPI PHInPlaceSite_ContextSensitiveHelp(IOleInPlaceSiteEx *ifac
static
HRESULT
WINAPI
PHInPlaceSite_CanInPlaceActivate
(
IOleInPlaceSiteEx
*
iface
)
{
PluginHost
*
This
=
impl_from_IOleInPlaceSiteEx
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
return
E_NOTIMPL
;
TRACE
(
"(%p)
\n
"
,
This
);
return
S_OK
;
}
static
HRESULT
WINAPI
PHInPlaceSite_OnInPlaceActivate
(
IOleInPlaceSiteEx
*
iface
)
...
...
dlls/mshtml/tests/activex.c
View file @
ff349394
...
...
@@ -903,6 +903,9 @@ static HRESULT WINAPI OleObject_DoVerb(IOleObject *iface, LONG iVerb, LPMSG lpms
hres
=
IOleClientSite_QueryInterface
(
pActiveSite
,
&
IID_IOleInPlaceSiteEx
,
(
void
**
)
&
ip_site
);
ok
(
hres
==
S_OK
,
"Could not get IOleInPlaceSiteEx iface: %08x
\n
"
,
hres
);
hres
=
IOleInPlaceSiteEx_CanInPlaceActivate
(
ip_site
);
ok
(
hres
==
S_OK
,
"CanInPlaceActivate failed: %08x
\n
"
,
hres
);
SET_EXPECT
(
InPlaceObject_GetWindow
);
no_redraw
=
0xdeadbeef
;
hres
=
IOleInPlaceSiteEx_OnInPlaceActivateEx
(
ip_site
,
&
no_redraw
,
0
);
...
...
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