Commit 3ee56808 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

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

parent a8e1ab64
......@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment