shell32: Pass an object instead of an iface to a helper function.

This commit is contained in:
Michael Stefaniuc 2011-10-10 00:52:43 +02:00 committed by Alexandre Julliard
parent 61c8da18ef
commit a6e4c721a2
1 changed files with 2 additions and 8 deletions

View File

@ -164,14 +164,8 @@ BOOL CreateFolderEnumList(
return succeeded;
}
/**************************************************************************
* DeleteList()
*/
static BOOL DeleteList(
IEnumIDList * iface)
static BOOL DeleteList(IEnumIDListImpl *This)
{
IEnumIDListImpl *This = (IEnumIDListImpl *)iface;
LPENUMLIST pDelete;
TRACE("(%p)->()\n",This);
@ -263,7 +257,7 @@ static ULONG WINAPI IEnumIDList_fnRelease(
if (!refCount) {
TRACE(" destroying IEnumIDList(%p)\n",This);
DeleteList((IEnumIDList*)This);
DeleteList(This);
HeapFree(GetProcessHeap(),0,This);
}
return refCount;