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

mshtml: Allocate UI events via the types table.

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