Jacek Caban (@jacek) commented about dlls/mshtml/htmlevent.c:
return CONTAINING_RECORD(iface, DOMEvent, dispex);
}
+static void *DOMEvent_query_interface(DispatchEx *dispex, REFIID riid) +{
- DOMEvent *This = DOMEvent_from_DispatchEx(dispex);
- if(IsEqualGUID(&IID_IDOMEvent, riid))
return &This->IDOMEvent_iface;
- if(This->query_interface)
This seems like a good opportunity to get rid of query_interface from DOMEvent object. Anyway, this MR has too many commit, please split it.