Module: wine Branch: master Commit: e787f84b012440de7bb37d88ef0ce5051c488f77 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e787f84b012440de7bb37d88ef...
Author: Jacek Caban jacek@codeweavers.com Date: Mon May 26 18:47:10 2008 +0200
mshtml: Fixed copy&paste typo.
---
dlls/mshtml/htmldoc.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/mshtml/htmldoc.c b/dlls/mshtml/htmldoc.c index c7d9eb8..fa9e16f 100644 --- a/dlls/mshtml/htmldoc.c +++ b/dlls/mshtml/htmldoc.c @@ -1347,21 +1347,21 @@ static HRESULT WINAPI DocDispatchEx_QueryInterface(IDispatchEx *iface, REFIID ri { HTMLDocument *This = DISPEX_THIS(iface);
- return IHTMLWindow2_QueryInterface(HTMLDOC(This), riid, ppv); + return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppv); }
static ULONG WINAPI DocDispatchEx_AddRef(IDispatchEx *iface) { HTMLDocument *This = DISPEX_THIS(iface);
- return IHTMLWindow2_AddRef(HTMLDOC(This)); + return IHTMLDocument2_AddRef(HTMLDOC(This)); }
static ULONG WINAPI DocDispatchEx_Release(IDispatchEx *iface) { HTMLDocument *This = DISPEX_THIS(iface);
- return IHTMLWindow2_Release(HTMLDOC(This)); + return IHTMLDocument2_Release(HTMLDOC(This)); }
static HRESULT WINAPI DocDispatchEx_GetTypeInfoCount(IDispatchEx *iface, UINT *pctinfo)