shell32: Return S_OK from IFolderView2::SetViewModeAndIconSize() stub.

Signed-off-by: Dmitry Timoshkov <dmitry@baikal.ru>
This commit is contained in:
Dmitry Timoshkov 2022-10-06 13:36:51 +03:00 committed by Alexandre Julliard
parent a8e1ab6422
commit 3ee56808e4

View file

@ -3031,7 +3031,7 @@ static HRESULT WINAPI FolderView2_SetViewModeAndIconSize(IFolderView2 *iface, FO
{
IShellViewImpl *This = impl_from_IFolderView2(iface);
FIXME("(%p)->(%d %d), stub\n", This, mode, size);
return E_NOTIMPL;
return S_OK;
}
static HRESULT WINAPI FolderView2_GetViewModeAndIconSize(IFolderView2 *iface, FOLDERVIEWMODE *mode,