mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:54:13 +00:00
shell32: Forward IExtractIconA::Release to IExtractIconW:Release.
This commit is contained in:
parent
5718c0bc22
commit
725db4d19d
1 changed files with 1 additions and 1 deletions
|
@ -440,7 +440,7 @@ static ULONG WINAPI IExtractIconA_fnRelease(IExtractIconA * iface)
|
||||||
{
|
{
|
||||||
IExtractIconW *This = impl_from_IExtractIconA(iface);
|
IExtractIconW *This = impl_from_IExtractIconA(iface);
|
||||||
|
|
||||||
return IExtractIconW_AddRef(This);
|
return IExtractIconW_Release(This);
|
||||||
}
|
}
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
* IExtractIconA_GetIconLocation
|
* IExtractIconA_GetIconLocation
|
||||||
|
|
Loading…
Reference in a new issue