mshtml: Pass dispex info to HTMLElement_Init in HTMLElement_Create.

This commit is contained in:
Jacek Caban 2010-01-28 23:54:10 +01:00 committed by Alexandre Julliard
parent 398161dcee
commit 4a400e154b

View file

@ -1671,7 +1671,7 @@ HTMLElement *HTMLElement_Create(HTMLDocumentNode *doc, nsIDOMNode *nsnode, BOOL
if(!ret) {
ret = heap_alloc_zero(sizeof(HTMLElement));
HTMLElement_Init(ret, doc, nselem, NULL);
HTMLElement_Init(ret, doc, nselem, &HTMLElement_dispex);
ret->node.vtbl = &HTMLElementImplVtbl;
}