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
680d7e48
Commit
680d7e48
authored
Feb 23, 2022
by
Jacek Caban
Committed by
Alexandre Julliard
Feb 24, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Don't try to bind custom events to Gecko event target.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7ea710c6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
htmlevent.c
dlls/mshtml/htmlevent.c
+3
-3
No files found.
dlls/mshtml/htmlevent.c
View file @
680d7e48
...
...
@@ -242,10 +242,10 @@ static listener_container_t *get_listener_container(EventTarget *event_target, c
memcpy
(
container
->
type
,
type
,
(
type_len
+
1
)
*
sizeof
(
WCHAR
));
list_init
(
&
container
->
listeners
);
vtbl
=
dispex_get_vtbl
(
&
event_target
->
dispex
);
if
(
vtbl
->
bind_event
)
vtbl
->
bind_event
(
&
event_target
->
dispex
,
eid
);
else
if
(
!
vtbl
->
bind_event
)
FIXME
(
"Unsupported event binding on target %p
\n
"
,
event_target
);
else
if
(
eid
!=
EVENTID_LAST
)
vtbl
->
bind_event
(
&
event_target
->
dispex
,
eid
);
wine_rb_put
(
&
event_target
->
handler_map
,
container
->
type
,
&
container
->
entry
);
return
container
;
...
...
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