mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
mshtml: Added IHTMLStyle2 to IDispatchEx support.
This commit is contained in:
parent
239f7f70e7
commit
3203524bb5
3 changed files with 3 additions and 0 deletions
|
@ -103,6 +103,7 @@ static REFIID tid_ids[] = {
|
|||
&IID_IHTMLOptionElement,
|
||||
&IID_IHTMLSelectElement,
|
||||
&IID_IHTMLStyle,
|
||||
&IID_IHTMLStyle2,
|
||||
&IID_IHTMLTable,
|
||||
&IID_IHTMLTableRow,
|
||||
&IID_IHTMLTextContainer,
|
||||
|
|
|
@ -1890,6 +1890,7 @@ static const IHTMLStyleVtbl HTMLStyleVtbl = {
|
|||
|
||||
static const tid_t HTMLStyle_iface_tids[] = {
|
||||
IHTMLStyle_tid,
|
||||
IHTMLStyle2_tid,
|
||||
0
|
||||
};
|
||||
static dispex_static_data_t HTMLStyle_dispex = {
|
||||
|
|
|
@ -99,6 +99,7 @@ typedef enum {
|
|||
IHTMLOptionElement_tid,
|
||||
IHTMLSelectElement_tid,
|
||||
IHTMLStyle_tid,
|
||||
IHTMLStyle2_tid,
|
||||
IHTMLTable_tid,
|
||||
IHTMLTableRow_tid,
|
||||
IHTMLTextContainer_tid,
|
||||
|
|
Loading…
Reference in a new issue