Commit a8e1ab64 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

shell32: Improve FolderView2::GetViewModeAndIconSize() stub.

parent 12f50afe
......@@ -3038,8 +3038,13 @@ static HRESULT WINAPI FolderView2_GetViewModeAndIconSize(IFolderView2 *iface, FO
int *size)
{
IShellViewImpl *This = impl_from_IFolderView2(iface);
FIXME("(%p)->(%p %p), stub\n", This, mode, size);
return E_NOTIMPL;
*size = 16; /* FIXME */
*mode = This->FolderSettings.ViewMode;
return S_OK;
}
static HRESULT WINAPI FolderView2_SetGroupSubsetCount(IFolderView2 *iface, UINT visible_rows)
......
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