From a6e4c721a2b58371864865f68030b936bc83a5ca Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Mon, 10 Oct 2011 00:52:43 +0200 Subject: [PATCH] shell32: Pass an object instead of an iface to a helper function. --- dlls/shell32/enumidlist.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/dlls/shell32/enumidlist.c b/dlls/shell32/enumidlist.c index 643e03956fc..2eb0ff8afaf 100644 --- a/dlls/shell32/enumidlist.c +++ b/dlls/shell32/enumidlist.c @@ -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;