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 {
typedef struct DOMEvent {
DispatchEx dispex;
IDOMEvent IDOMEvent_iface;
IDOMMouseEvent IDOMMouseEvent_iface;
IDOMKeyboardEvent IDOMKeyboardEvent_iface;
LONG ref;
......@@ -75,7 +74,6 @@ typedef struct DOMEvent {
void (*destroy)(struct DOMEvent*);
nsIDOMEvent *nsevent;
nsIDOMMouseEvent *mouse_event;
nsIDOMKeyEvent *keyboard_event;
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