Commit 8756ae39 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

dhtmled.ocx: Forward ConnectionPoint_Release() to a release method.

parent 8df5e1bc
......@@ -1647,7 +1647,7 @@ static ULONG WINAPI ConnectionPoint_AddRef(IConnectionPoint *iface)
static ULONG WINAPI ConnectionPoint_Release(IConnectionPoint *iface)
{
ConnectionPoint *This = impl_from_IConnectionPoint(iface);
return IConnectionPointContainer_AddRef(&This->dhed->IConnectionPointContainer_iface);
return IConnectionPointContainer_Release(&This->dhed->IConnectionPointContainer_iface);
}
static HRESULT WINAPI ConnectionPoint_GetConnectionInterface(IConnectionPoint *iface, IID *iid)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment