shell32: Forward AutoArrange() to IFolderView2.

This commit is contained in:
Nikolay Sivov 2015-05-04 18:20:45 +03:00 committed by Alexandre Julliard
parent a897adb67b
commit 7e0e82bc9c
1 changed files with 2 additions and 2 deletions

View File

@ -3145,8 +3145,8 @@ static HRESULT WINAPI IShellFolderView_fnArrangeGrid(IShellFolderView *iface)
static HRESULT WINAPI IShellFolderView_fnAutoArrange(IShellFolderView *iface)
{
IShellViewImpl *This = impl_from_IShellFolderView(iface);
FIXME("(%p) stub\n", This);
return E_NOTIMPL;
TRACE("(%p)\n", This);
return IFolderView2_SetCurrentFolderFlags(&This->IFolderView2_iface, FWF_AUTOARRANGE, FWF_AUTOARRANGE);
}
static HRESULT WINAPI IShellFolderView_fnGetAutoArrange(IShellFolderView *iface)