mshtml: Fix copy and paste error.

oldstable
Michael Stefaniuc 2013-02-19 15:17:08 +01:00 committed by Alexandre Julliard
parent 2f0b93ca13
commit 52bdc93e72
1 changed files with 1 additions and 1 deletions

View File

@ -470,7 +470,7 @@ static ULONG WINAPI WindowForBindingUI_AddRef(IWindowForBindingUI *iface)
static ULONG WINAPI WindowForBindingUI_Release(IWindowForBindingUI *iface)
{
InstallCallback *This = impl_from_IWindowForBindingUI(iface);
return IBindStatusCallback_AddRef(&This->IBindStatusCallback_iface);
return IBindStatusCallback_Release(&This->IBindStatusCallback_iface);
}
static HRESULT WINAPI WindowForBindingUI_GetWindow(IWindowForBindingUI *iface, REFGUID rguidReason, HWND *phwnd)