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
ebbcd53c
Commit
ebbcd53c
authored
Nov 05, 2006
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 06, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shdocvw: Ignore hwndParent in DoVerb.
parent
30b24fbf
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
8 deletions
+9
-8
oleobject.c
dlls/shdocvw/oleobject.c
+7
-6
webbrowser.c
dlls/shdocvw/tests/webbrowser.c
+2
-2
No files found.
dlls/shdocvw/oleobject.c
View file @
ebbcd53c
...
...
@@ -106,8 +106,9 @@ static void create_shell_embedding_hwnd(WebBrowser *This)
TRACE
(
"parent=%p hwnd=%p
\n
"
,
parent
,
This
->
shell_embedding_hwnd
);
}
static
HRESULT
activate_inplace
(
WebBrowser
*
This
,
IOleClientSite
*
active_site
,
HWND
parent_hwnd
)
static
HRESULT
activate_inplace
(
WebBrowser
*
This
,
IOleClientSite
*
active_site
)
{
HWND
parent_hwnd
;
HRESULT
hres
;
if
(
This
->
inplace
)
...
...
@@ -157,7 +158,7 @@ static HRESULT activate_inplace(WebBrowser *This, IOleClientSite *active_site, H
return
S_OK
;
}
static
HRESULT
activate_ui
(
WebBrowser
*
This
,
IOleClientSite
*
active_site
,
HWND
parent_hwnd
)
static
HRESULT
activate_ui
(
WebBrowser
*
This
,
IOleClientSite
*
active_site
)
{
HRESULT
hres
;
...
...
@@ -166,7 +167,7 @@ static HRESULT activate_ui(WebBrowser *This, IOleClientSite *active_site, HWND p
if
(
This
->
inplace
)
return
S_OK
;
hres
=
activate_inplace
(
This
,
active_site
,
parent_hwnd
);
hres
=
activate_inplace
(
This
,
active_site
);
if
(
FAILED
(
hres
))
return
hres
;
...
...
@@ -347,13 +348,13 @@ static HRESULT WINAPI OleObject_DoVerb(IOleObject *iface, LONG iVerb, struct tag
{
case
OLEIVERB_SHOW
:
TRACE
(
"OLEIVERB_SHOW
\n
"
);
return
activate_ui
(
This
,
pActiveSite
,
hwndParent
);
return
activate_ui
(
This
,
pActiveSite
);
case
OLEIVERB_UIACTIVATE
:
TRACE
(
"OLEIVERB_UIACTIVATE
\n
"
);
return
activate_ui
(
This
,
pActiveSite
,
hwndParent
);
return
activate_ui
(
This
,
pActiveSite
);
case
OLEIVERB_INPLACEACTIVATE
:
TRACE
(
"OLEIVERB_INPLACEACTIVATE
\n
"
);
return
activate_inplace
(
This
,
pActiveSite
,
hwndParent
);
return
activate_inplace
(
This
,
pActiveSite
);
default:
FIXME
(
"stub for %d
\n
"
,
iVerb
);
break
;
...
...
dlls/shdocvw/tests/webbrowser.c
View file @
ebbcd53c
...
...
@@ -725,7 +725,7 @@ static void test_DoVerb(IUnknown *unk)
SET_EXPECT
(
SetMenu
);
hres
=
IOleObject_DoVerb
(
oleobj
,
OLEIVERB_SHOW
,
NULL
,
&
ClientSite
,
0
,
container_hwnd
,
&
rect
);
0
,
(
HWND
)
0xdeadbeef
,
&
rect
);
ok
(
hres
==
S_OK
,
"DoVerb failed: %08x
\n
"
,
hres
);
CHECK_CALLED
(
CanInPlaceActivate
);
...
...
@@ -741,7 +741,7 @@ static void test_DoVerb(IUnknown *unk)
CHECK_CALLED
(
SetMenu
);
hres
=
IOleObject_DoVerb
(
oleobj
,
OLEIVERB_SHOW
,
NULL
,
&
ClientSite
,
0
,
container_hwnd
,
&
rect
);
0
,
(
HWND
)
0xdeadbeef
,
&
rect
);
ok
(
hres
==
S_OK
,
"DoVerb failed: %08x
\n
"
,
hres
);
IOleObject_Release
(
oleobj
);
...
...
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