shell32: Use interface pointer instead of implementation one.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
badccd8c7c
commit
91947b35ad
|
@ -486,7 +486,7 @@ static HRESULT WINAPI RecycleBin_CreateViewObject(IShellFolder2 *iface, HWND hwn
|
|||
|
||||
ZeroMemory(&sfv, sizeof(sfv));
|
||||
sfv.cbSize = sizeof(sfv);
|
||||
sfv.pshf = (IShellFolder *)This;
|
||||
sfv.pshf = (IShellFolder *)&This->IShellFolder2_iface;
|
||||
|
||||
TRACE("Calling SHCreateShellFolderViewEx\n");
|
||||
ret = SHCreateShellFolderViewEx(&sfv, &tmp);
|
||||
|
|
Loading…
Reference in New Issue