From 7e0e82bc9c4d598cce883af232d2efdcc7bfe9c1 Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Mon, 4 May 2015 18:20:45 +0300 Subject: [PATCH] shell32: Forward AutoArrange() to IFolderView2. --- dlls/shell32/shlview.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/shell32/shlview.c b/dlls/shell32/shlview.c index f0e153c5362..549ba012c6e 100644 --- a/dlls/shell32/shlview.c +++ b/dlls/shell32/shlview.c @@ -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) -- 2.11.4.GIT