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
c3f68178
Commit
c3f68178
authored
Jan 09, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Jan 09, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ieframe: Added semi-stub IHTMLWindow2::close implementation.
parent
a8816f51
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
iehtmlwnd.c
dlls/ieframe/iehtmlwnd.c
+7
-2
No files found.
dlls/ieframe/iehtmlwnd.c
View file @
c3f68178
...
...
@@ -215,8 +215,13 @@ static HRESULT WINAPI IEHTMLWindow2_get_history(IHTMLWindow2 *iface, IOmHistory
static
HRESULT
WINAPI
IEHTMLWindow2_close
(
IHTMLWindow2
*
iface
)
{
IEHTMLWindow
*
This
=
impl_from_IHTMLWindow2
(
iface
);
FIXME
(
"(%p)->()
\n
"
,
This
);
return
E_NOTIMPL
;
FIXME
(
"(%p) semi-stub
\n
"
,
This
);
if
(
!
This
->
doc_host
->
wb
)
return
E_UNEXPECTED
;
return
IWebBrowser2_put_Visible
(
This
->
doc_host
->
wb
,
VARIANT_FALSE
);
}
static
HRESULT
WINAPI
IEHTMLWindow2_put_opener
(
IHTMLWindow2
*
iface
,
VARIANT
v
)
...
...
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