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
8e32ee6a
Commit
8e32ee6a
authored
Oct 25, 2017
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 25, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added IDOMEvent::removeEventListener implementation.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
da8c7dde
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
htmlevent.c
dlls/mshtml/htmlevent.c
+12
-2
No files found.
dlls/mshtml/htmlevent.c
View file @
8e32ee6a
...
...
@@ -2125,8 +2125,18 @@ static HRESULT WINAPI EventTarget_removeEventListener(IEventTarget *iface, BSTR
IDispatch
*
listener
,
VARIANT_BOOL
capture
)
{
EventTarget
*
This
=
impl_from_IEventTarget
(
iface
);
FIXME
(
"(%p)->(%s %p %x)
\n
"
,
This
,
debugstr_w
(
type
),
listener
,
capture
);
return
E_NOTIMPL
;
eventid_t
eid
;
TRACE
(
"(%p)->(%s %p %x)
\n
"
,
This
,
debugstr_w
(
type
),
listener
,
capture
);
eid
=
str_to_eid
(
type
);
if
(
eid
==
EVENTID_LAST
)
{
FIXME
(
"Unsupported on event %s
\n
"
,
debugstr_w
(
type
));
return
E_NOTIMPL
;
}
remove_event_listener
(
This
,
eid
,
capture
?
LISTENER_TYPE_CAPTURE
:
LISTENER_TYPE_BUBBLE
,
listener
);
return
S_OK
;
}
static
HRESULT
WINAPI
EventTarget_dispatchEvent
(
IEventTarget
*
iface
,
IDOMEvent
*
event
,
VARIANT_BOOL
*
result
)
...
...
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