Module: wine Branch: master Commit: 7e0e82bc9c4d598cce883af232d2efdcc7bfe9c1 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7e0e82bc9c4d598cce883af232...
Author: Nikolay Sivov nsivov@codeweavers.com Date: Mon May 4 18:20:45 2015 +0300
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 f0e153c..549ba01 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)