Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
aa6ee29e
Commit
aa6ee29e
authored
Aug 02, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Aug 02, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Rename call_event to fire_event.
parent
989f39ef
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
8 deletions
+8
-8
htmlelem.c
dlls/mshtml/htmlelem.c
+1
-1
htmlevent.c
dlls/mshtml/htmlevent.c
+3
-3
htmlevent.h
dlls/mshtml/htmlevent.h
+1
-1
htmlinput.c
dlls/mshtml/htmlinput.c
+2
-2
mshtml_private.h
dlls/mshtml/mshtml_private.h
+1
-1
No files found.
dlls/mshtml/htmlelem.c
View file @
aa6ee29e
...
...
@@ -1371,7 +1371,7 @@ static HRESULT WINAPI HTMLElement_click(IHTMLElement *iface)
TRACE
(
"(%p)
\n
"
,
This
);
return
call_event
(
&
This
->
node
,
EVENTID_CLICK
);
return
call_
fire_
event
(
&
This
->
node
,
EVENTID_CLICK
);
}
static
HRESULT
WINAPI
HTMLElement_get_filters
(
IHTMLElement
*
iface
,
...
...
dlls/mshtml/htmlevent.c
View file @
aa6ee29e
...
...
@@ -1088,14 +1088,14 @@ HRESULT dispatch_event(HTMLDOMNode *node, const WCHAR *event_name, VARIANT *even
return
S_OK
;
}
HRESULT
call_event
(
HTMLDOMNode
*
node
,
eventid_t
eid
)
HRESULT
call_
fire_
event
(
HTMLDOMNode
*
node
,
eventid_t
eid
)
{
HRESULT
hres
;
if
(
node
->
vtbl
->
call
_event
)
{
if
(
node
->
vtbl
->
fire
_event
)
{
BOOL
handled
=
FALSE
;
hres
=
node
->
vtbl
->
call
_event
(
node
,
eid
,
&
handled
);
hres
=
node
->
vtbl
->
fire
_event
(
node
,
eid
,
&
handled
);
if
(
handled
)
return
hres
;
}
...
...
dlls/mshtml/htmlevent.h
View file @
aa6ee29e
...
...
@@ -51,7 +51,7 @@ HRESULT get_event_handler(event_target_t**,eventid_t,VARIANT*) DECLSPEC_HIDDEN;
HRESULT
attach_event
(
event_target_t
**
,
nsIDOMNode
*
,
HTMLDocument
*
,
BSTR
,
IDispatch
*
,
VARIANT_BOOL
*
)
DECLSPEC_HIDDEN
;
HRESULT
detach_event
(
event_target_t
*
,
HTMLDocument
*
,
BSTR
,
IDispatch
*
)
DECLSPEC_HIDDEN
;
HRESULT
dispatch_event
(
HTMLDOMNode
*
,
const
WCHAR
*
,
VARIANT
*
,
VARIANT_BOOL
*
)
DECLSPEC_HIDDEN
;
HRESULT
call_event
(
HTMLDOMNode
*
,
eventid_t
)
DECLSPEC_HIDDEN
;
HRESULT
call_
fire_
event
(
HTMLDOMNode
*
,
eventid_t
)
DECLSPEC_HIDDEN
;
void
update_cp_events
(
HTMLWindow
*
,
event_target_t
**
,
cp_static_data_t
*
,
nsIDOMNode
*
)
DECLSPEC_HIDDEN
;
static
inline
event_target_t
**
get_node_event_target
(
HTMLDOMNode
*
node
)
...
...
dlls/mshtml/htmlinput.c
View file @
aa6ee29e
...
...
@@ -1150,7 +1150,7 @@ static void HTMLInputElement_destructor(HTMLDOMNode *iface)
HTMLElement_destructor
(
&
This
->
element
.
node
);
}
static
HRESULT
HTMLInputElementImpl_
call
_event
(
HTMLDOMNode
*
iface
,
eventid_t
eid
,
BOOL
*
handled
)
static
HRESULT
HTMLInputElementImpl_
fire
_event
(
HTMLDOMNode
*
iface
,
eventid_t
eid
,
BOOL
*
handled
)
{
HTMLInputElement
*
This
=
impl_from_HTMLDOMNode
(
iface
);
...
...
@@ -1186,7 +1186,7 @@ static const NodeImplVtbl HTMLInputElementImplVtbl = {
HTMLInputElement_destructor
,
HTMLElement_clone
,
NULL
,
HTMLInputElementImpl_
call
_event
,
HTMLInputElementImpl_
fire
_event
,
HTMLInputElementImpl_put_disabled
,
HTMLInputElementImpl_get_disabled
,
};
...
...
dlls/mshtml/mshtml_private.h
View file @
aa6ee29e
...
...
@@ -498,7 +498,7 @@ typedef struct {
void
(
*
destructor
)(
HTMLDOMNode
*
);
HRESULT
(
*
clone
)(
HTMLDOMNode
*
,
nsIDOMNode
*
,
HTMLDOMNode
**
);
event_target_t
**
(
*
get_event_target
)(
HTMLDOMNode
*
);
HRESULT
(
*
call
_event
)(
HTMLDOMNode
*
,
DWORD
,
BOOL
*
);
HRESULT
(
*
fire
_event
)(
HTMLDOMNode
*
,
DWORD
,
BOOL
*
);
HRESULT
(
*
put_disabled
)(
HTMLDOMNode
*
,
VARIANT_BOOL
);
HRESULT
(
*
get_disabled
)(
HTMLDOMNode
*
,
VARIANT_BOOL
*
);
HRESULT
(
*
get_document
)(
HTMLDOMNode
*
,
IDispatch
**
);
...
...
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