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
dfd32a33
Commit
dfd32a33
authored
Aug 15, 2023
by
Gabriel Ivăncescu
Committed by
Alexandre Julliard
Aug 16, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Make all event target vtbls const.
Signed-off-by:
Gabriel Ivăncescu
<
gabrielopcode@gmail.com
>
parent
4e08d7e2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
htmldoc.c
dlls/mshtml/htmldoc.c
+1
-1
xmlhttprequest.c
dlls/mshtml/xmlhttprequest.c
+1
-1
No files found.
dlls/mshtml/htmldoc.c
View file @
dfd32a33
...
...
@@ -365,7 +365,7 @@ static IHTMLEventObj *DocumentType_set_current_event(DispatchEx *dispex, IHTMLEv
return
default_set_current_event
(
This
->
node
.
doc
->
window
,
event
);
}
static
event_target_vtbl_t
DocumentType_event_target_vtbl
=
{
static
const
event_target_vtbl_t
DocumentType_event_target_vtbl
=
{
{
NULL
,
},
...
...
dlls/mshtml/xmlhttprequest.c
View file @
dfd32a33
...
...
@@ -1592,7 +1592,7 @@ static void HTMLXMLHttpRequest_init_dispex_info(dispex_data_t *info, compat_mode
compat_mode
<
COMPAT_MODE_IE11
?
private_ie10_hooks
:
NULL
);
}
static
event_target_vtbl_t
HTMLXMLHttpRequest_event_target_vtbl
=
{
static
const
event_target_vtbl_t
HTMLXMLHttpRequest_event_target_vtbl
=
{
{
HTMLXMLHttpRequest_destructor
,
HTMLXMLHttpRequest_unlink
...
...
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