Commit f98ba4fa authored by Gabriel Ivăncescu's avatar Gabriel Ivăncescu Committed by Alexandre Julliard

mshtml: Rename EVENTID_INVALID to EVENTID_INVALID_ID.

There is actually an "invalid" event type (sent on invalid input for example), so this avoids confusion with it. Signed-off-by: 's avatarGabriel Ivăncescu <gabrielopcode@gmail.com>
parent 95bbaa62
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
*/ */
typedef enum { typedef enum {
EVENTID_INVALID = -1, EVENTID_INVALID_ID = -1,
EVENTID_DOMCONTENTLOADED, EVENTID_DOMCONTENTLOADED,
EVENTID_ABORT, EVENTID_ABORT,
EVENTID_AFTERPRINT, EVENTID_AFTERPRINT,
......
...@@ -301,7 +301,7 @@ static HRESULT WINAPI HTMLImgElement_put_src(IHTMLImgElement *iface, BSTR v) ...@@ -301,7 +301,7 @@ static HRESULT WINAPI HTMLImgElement_put_src(IHTMLImgElement *iface, BSTR v)
DOMEvent *event; DOMEvent *event;
/* Synchronously send load event if the image was completed immediately (such as from cache) */ /* Synchronously send load event if the image was completed immediately (such as from cache) */
This->skip_event = EVENTID_INVALID; This->skip_event = EVENTID_INVALID_ID;
nsres = nsIDOMHTMLImageElement_GetComplete(This->nsimg, &complete); nsres = nsIDOMHTMLImageElement_GetComplete(This->nsimg, &complete);
if(NS_SUCCEEDED(nsres) && complete) { if(NS_SUCCEEDED(nsres) && complete) {
...@@ -707,7 +707,7 @@ static HRESULT HTMLImgElement_dispatch_nsevent_hook(HTMLDOMNode *iface, DOMEvent ...@@ -707,7 +707,7 @@ static HRESULT HTMLImgElement_dispatch_nsevent_hook(HTMLDOMNode *iface, DOMEvent
HTMLImg *This = impl_from_HTMLDOMNode(iface); HTMLImg *This = impl_from_HTMLDOMNode(iface);
if(event->event_id == This->skip_event) { if(event->event_id == This->skip_event) {
This->skip_event = EVENTID_INVALID; This->skip_event = EVENTID_INVALID_ID;
return S_OK; return S_OK;
} }
...@@ -799,7 +799,7 @@ HRESULT HTMLImgElement_Create(HTMLDocumentNode *doc, nsIDOMElement *nselem, HTML ...@@ -799,7 +799,7 @@ HRESULT HTMLImgElement_Create(HTMLDocumentNode *doc, nsIDOMElement *nselem, HTML
ret->IHTMLImgElement_iface.lpVtbl = &HTMLImgElementVtbl; ret->IHTMLImgElement_iface.lpVtbl = &HTMLImgElementVtbl;
ret->element.node.vtbl = &HTMLImgElementImplVtbl; ret->element.node.vtbl = &HTMLImgElementImplVtbl;
ret->skip_event = EVENTID_INVALID; ret->skip_event = EVENTID_INVALID_ID;
HTMLElement_Init(&ret->element, doc, nselem, &HTMLImgElement_dispex); HTMLElement_Init(&ret->element, doc, nselem, &HTMLImgElement_dispex);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment