Module: wine Branch: master Commit: 73bd6da20880c9f7d27cf585171b447e39d1e2e6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=73bd6da20880c9f7d27cf58517...
Author: Kirill K. Smirnov lich@math.spbu.ru Date: Sun May 25 02:06:50 2008 +0400
mshtml: Fix copy/paste error.
---
dlls/mshtml/htmlwindow.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/mshtml/htmlwindow.c b/dlls/mshtml/htmlwindow.c index c46f05e..6e1d092 100644 --- a/dlls/mshtml/htmlwindow.c +++ b/dlls/mshtml/htmlwindow.c @@ -963,7 +963,7 @@ static ULONG WINAPI WindowDispEx_Release(IDispatchEx *iface) { HTMLWindow *This = DISPEX_THIS(iface);
- return IHTMLWindow2_AddRef(HTMLWINDOW2(This)); + return IHTMLWindow2_Release(HTMLWINDOW2(This)); }
static HRESULT WINAPI WindowDispEx_GetTypeInfoCount(IDispatchEx *iface, UINT *pctinfo)