[PATCH 2/8] shell32: Pass an object instead of an iface to a helper function.

Michael Stefaniuc mstefani at redhat.de
Sun Oct 9 17:52:43 CDT 2011


---
 dlls/shell32/enumidlist.c |   10 ++--------
 1 files changed, 2 insertions(+), 8 deletions(-)

diff --git a/dlls/shell32/enumidlist.c b/dlls/shell32/enumidlist.c
index 643e039..2eb0ff8 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;
-- 
1.7.6.4



More information about the wine-patches mailing list