Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
a6e4c721
Commit
a6e4c721
authored
Oct 10, 2011
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 10, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Pass an object instead of an iface to a helper function.
parent
61c8da18
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
8 deletions
+2
-8
enumidlist.c
dlls/shell32/enumidlist.c
+2
-8
No files found.
dlls/shell32/enumidlist.c
View file @
a6e4c721
...
@@ -164,14 +164,8 @@ BOOL CreateFolderEnumList(
...
@@ -164,14 +164,8 @@ BOOL CreateFolderEnumList(
return
succeeded
;
return
succeeded
;
}
}
/**************************************************************************
static
BOOL
DeleteList
(
IEnumIDListImpl
*
This
)
* DeleteList()
*/
static
BOOL
DeleteList
(
IEnumIDList
*
iface
)
{
{
IEnumIDListImpl
*
This
=
(
IEnumIDListImpl
*
)
iface
;
LPENUMLIST
pDelete
;
LPENUMLIST
pDelete
;
TRACE
(
"(%p)->()
\n
"
,
This
);
TRACE
(
"(%p)->()
\n
"
,
This
);
...
@@ -263,7 +257,7 @@ static ULONG WINAPI IEnumIDList_fnRelease(
...
@@ -263,7 +257,7 @@ static ULONG WINAPI IEnumIDList_fnRelease(
if
(
!
refCount
)
{
if
(
!
refCount
)
{
TRACE
(
" destroying IEnumIDList(%p)
\n
"
,
This
);
TRACE
(
" destroying IEnumIDList(%p)
\n
"
,
This
);
DeleteList
((
IEnumIDList
*
)
This
);
DeleteList
(
This
);
HeapFree
(
GetProcessHeap
(),
0
,
This
);
HeapFree
(
GetProcessHeap
(),
0
,
This
);
}
}
return
refCount
;
return
refCount
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment