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

mshtml: Allocate Mouse events via the types table.

Instead of specially treating them. Signed-off-by: 's avatarGabriel Ivăncescu <gabrielopcode@gmail.com>
parent c423d070
...@@ -67,7 +67,6 @@ typedef enum { ...@@ -67,7 +67,6 @@ typedef enum {
typedef struct DOMEvent { typedef struct DOMEvent {
DispatchEx dispex; DispatchEx dispex;
IDOMEvent IDOMEvent_iface; IDOMEvent IDOMEvent_iface;
IDOMMouseEvent IDOMMouseEvent_iface;
IDOMKeyboardEvent IDOMKeyboardEvent_iface; IDOMKeyboardEvent IDOMKeyboardEvent_iface;
LONG ref; LONG ref;
...@@ -75,7 +74,6 @@ typedef struct DOMEvent { ...@@ -75,7 +74,6 @@ typedef struct DOMEvent {
void (*destroy)(struct DOMEvent*); void (*destroy)(struct DOMEvent*);
nsIDOMEvent *nsevent; nsIDOMEvent *nsevent;
nsIDOMMouseEvent *mouse_event;
nsIDOMKeyEvent *keyboard_event; nsIDOMKeyEvent *keyboard_event;
eventid_t event_id; eventid_t event_id;
......
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