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
68c5fed5
Commit
68c5fed5
authored
Apr 30, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
May 04, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
explorer: Implement Application property.
parent
58775c87
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
5 deletions
+8
-5
shelldispatch.c
dlls/shell32/tests/shelldispatch.c
+1
-3
desktop.c
programs/explorer/desktop.c
+7
-2
No files found.
dlls/shell32/tests/shelldispatch.c
View file @
68c5fed5
...
...
@@ -546,11 +546,9 @@ todo_wine
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
hr
=
IWebBrowser2_get_Application
(
wb
,
&
app
);
todo_wine
{
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
ok
(
disp
==
app
,
"got %p, %p
\n
"
,
app
,
disp
);
}
if
(
hr
==
S_OK
)
IDispatch_Release
(
app
);
IDispatch_Release
(
app
);
hr
=
IWebBrowser2_get_Document
(
wb
,
&
doc
);
todo_wine
...
...
programs/explorer/desktop.c
View file @
68c5fed5
...
...
@@ -1430,8 +1430,13 @@ static HRESULT WINAPI webbrowser_Stop(IWebBrowser2 *iface)
static
HRESULT
WINAPI
webbrowser_get_Application
(
IWebBrowser2
*
iface
,
IDispatch
**
ppDisp
)
{
struct
shellbrowserwindow
*
This
=
impl_from_IWebBrowser2
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
ppDisp
);
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
ppDisp
);
*
ppDisp
=
(
IDispatch
*
)
iface
;
IDispatch_AddRef
(
*
ppDisp
);
return
S_OK
;
}
static
HRESULT
WINAPI
webbrowser_get_Parent
(
IWebBrowser2
*
iface
,
IDispatch
**
ppDisp
)
...
...
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