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:
Nikolay Sivov 2016-08-25 23:30:16 +03:00 committed by Alexandre Julliard
parent badccd8c7c
commit 91947b35ad
1 changed files with 1 additions and 1 deletions

View File

@ -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);