Module: wine Branch: master Commit: ad7fc048b76e18f7526603b4e1c8da6e668d2a2a URL: http://source.winehq.org/git/wine.git/?a=commit;h=ad7fc048b76e18f7526603b4e1...
Author: Alistair Leslie-Hughes leslie_alistair@hotmail.com Date: Thu Mar 5 20:08:51 2009 +1100
mshtml: Add missing IHTMLCurrentStyle IDispatchEx ids.
---
dlls/mshtml/dispex.c | 3 +++ dlls/mshtml/htmlcurstyle.c | 3 +++ dlls/mshtml/mshtml_private.h | 3 +++ 3 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/dlls/mshtml/dispex.c b/dlls/mshtml/dispex.c index 18b549f..0d0422c 100644 --- a/dlls/mshtml/dispex.c +++ b/dlls/mshtml/dispex.c @@ -88,6 +88,9 @@ static REFIID tid_ids[] = { &IID_IHTMLBodyElement2, &IID_IHTMLCommentElement, &IID_IHTMLCurrentStyle, + &IID_IHTMLCurrentStyle2, + &IID_IHTMLCurrentStyle3, + &IID_IHTMLCurrentStyle4, &IID_IHTMLDocument2, &IID_IHTMLDocument3, &IID_IHTMLDocument4, diff --git a/dlls/mshtml/htmlcurstyle.c b/dlls/mshtml/htmlcurstyle.c index 77c10ee..5aaaece 100644 --- a/dlls/mshtml/htmlcurstyle.c +++ b/dlls/mshtml/htmlcurstyle.c @@ -874,6 +874,9 @@ static const IHTMLCurrentStyleVtbl HTMLCurrentStyleVtbl = {
static const tid_t HTMLCurrentStyle_iface_tids[] = { IHTMLCurrentStyle_tid, + IHTMLCurrentStyle2_tid, + IHTMLCurrentStyle3_tid, + IHTMLCurrentStyle4_tid, 0 }; static dispex_static_data_t HTMLCurrentStyle_dispex = { diff --git a/dlls/mshtml/mshtml_private.h b/dlls/mshtml/mshtml_private.h index 5239a21..3ecfdea 100644 --- a/dlls/mshtml/mshtml_private.h +++ b/dlls/mshtml/mshtml_private.h @@ -84,6 +84,9 @@ typedef enum { IHTMLBodyElement2_tid, IHTMLCommentElement_tid, IHTMLCurrentStyle_tid, + IHTMLCurrentStyle2_tid, + IHTMLCurrentStyle3_tid, + IHTMLCurrentStyle4_tid, IHTMLDocument2_tid, IHTMLDocument3_tid, IHTMLDocument4_tid,