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
a660f673
Commit
a660f673
authored
Jul 16, 2018
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 16, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Use DWORD for event id argument in node-specific event handlers.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a8df2c61
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
htmlanchor.c
dlls/mshtml/htmlanchor.c
+1
-1
htmlarea.c
dlls/mshtml/htmlarea.c
+1
-1
htmlform.c
dlls/mshtml/htmlform.c
+1
-1
No files found.
dlls/mshtml/htmlanchor.c
View file @
a660f673
...
@@ -727,7 +727,7 @@ static HRESULT HTMLAnchorElement_QI(HTMLDOMNode *iface, REFIID riid, void **ppv)
...
@@ -727,7 +727,7 @@ static HRESULT HTMLAnchorElement_QI(HTMLDOMNode *iface, REFIID riid, void **ppv)
return
HTMLElement_QI
(
&
This
->
element
.
node
,
riid
,
ppv
);
return
HTMLElement_QI
(
&
This
->
element
.
node
,
riid
,
ppv
);
}
}
static
HRESULT
HTMLAnchorElement_handle_event
(
HTMLDOMNode
*
iface
,
eventid_t
eid
,
nsIDOMEvent
*
event
,
BOOL
*
prevent_default
)
static
HRESULT
HTMLAnchorElement_handle_event
(
HTMLDOMNode
*
iface
,
DWORD
eid
,
nsIDOMEvent
*
event
,
BOOL
*
prevent_default
)
{
{
HTMLAnchorElement
*
This
=
impl_from_HTMLDOMNode
(
iface
);
HTMLAnchorElement
*
This
=
impl_from_HTMLDOMNode
(
iface
);
nsAString
href_str
,
target_str
;
nsAString
href_str
,
target_str
;
...
...
dlls/mshtml/htmlarea.c
View file @
a660f673
...
@@ -403,7 +403,7 @@ static HRESULT HTMLAreaElement_QI(HTMLDOMNode *iface, REFIID riid, void **ppv)
...
@@ -403,7 +403,7 @@ static HRESULT HTMLAreaElement_QI(HTMLDOMNode *iface, REFIID riid, void **ppv)
return
S_OK
;
return
S_OK
;
}
}
static
HRESULT
HTMLAreaElement_handle_event
(
HTMLDOMNode
*
iface
,
eventid_t
eid
,
nsIDOMEvent
*
event
,
BOOL
*
prevent_default
)
static
HRESULT
HTMLAreaElement_handle_event
(
HTMLDOMNode
*
iface
,
DWORD
eid
,
nsIDOMEvent
*
event
,
BOOL
*
prevent_default
)
{
{
HTMLAreaElement
*
This
=
impl_from_HTMLDOMNode
(
iface
);
HTMLAreaElement
*
This
=
impl_from_HTMLDOMNode
(
iface
);
nsAString
href_str
,
target_str
;
nsAString
href_str
,
target_str
;
...
...
dlls/mshtml/htmlform.c
View file @
a660f673
...
@@ -781,7 +781,7 @@ static HRESULT HTMLFormElement_invoke(HTMLDOMNode *iface,
...
@@ -781,7 +781,7 @@ static HRESULT HTMLFormElement_invoke(HTMLDOMNode *iface,
return
S_OK
;
return
S_OK
;
}
}
static
HRESULT
HTMLFormElement_handle_event
(
HTMLDOMNode
*
iface
,
eventid_t
eid
,
nsIDOMEvent
*
event
,
BOOL
*
prevent_default
)
static
HRESULT
HTMLFormElement_handle_event
(
HTMLDOMNode
*
iface
,
DWORD
eid
,
nsIDOMEvent
*
event
,
BOOL
*
prevent_default
)
{
{
HTMLFormElement
*
This
=
impl_from_HTMLDOMNode
(
iface
);
HTMLFormElement
*
This
=
impl_from_HTMLDOMNode
(
iface
);
...
...
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