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
e37ca6f9
Commit
e37ca6f9
authored
Nov 20, 2007
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 20, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shdocvw: Return correct error from WebBrowser::Quit.
parent
a8a1a2da
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
webbrowser.c
dlls/shdocvw/tests/webbrowser.c
+5
-0
webbrowser.c
dlls/shdocvw/webbrowser.c
+5
-2
No files found.
dlls/shdocvw/tests/webbrowser.c
View file @
e37ca6f9
...
...
@@ -1147,6 +1147,11 @@ static void test_ie_funcs(IUnknown *unk)
hres
=
IWebBrowser2_get_Application
(
wb
,
NULL
);
ok
(
hres
==
E_POINTER
,
"get_Application failed: %08x, expected E_POINTER
\n
"
,
hres
);
/* Quit */
hres
=
IWebBrowser2_Quit
(
wb
);
ok
(
hres
==
E_FAIL
,
"Quit failed: %08x, expected E_FAIL
\n
"
,
hres
);
IWebBrowser2_Release
(
wb
);
}
...
...
dlls/shdocvw/webbrowser.c
View file @
e37ca6f9
...
...
@@ -457,8 +457,11 @@ static HRESULT WINAPI WebBrowser_get_Busy(IWebBrowser2 *iface, VARIANT_BOOL *pBo
static
HRESULT
WINAPI
WebBrowser_Quit
(
IWebBrowser2
*
iface
)
{
WebBrowser
*
This
=
WEBBROWSER_THIS
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
return
E_NOTIMPL
;
TRACE
(
"(%p)
\n
"
,
This
);
/* It's a InternetExplorer specific method, we have nothing to do here. */
return
E_FAIL
;
}
static
HRESULT
WINAPI
WebBrowser_ClientToWindow
(
IWebBrowser2
*
iface
,
int
*
pcx
,
int
*
pcy
)
...
...
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