Nikolay Sivov : shell32: Forward AutoArrange() to IFolderView2.

Alexandre Julliard julliard at wine.codeweavers.com
Tue May 5 09:50:51 CDT 2015


Module: wine
Branch: master
Commit: 7e0e82bc9c4d598cce883af232d2efdcc7bfe9c1
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=7e0e82bc9c4d598cce883af232d2efdcc7bfe9c1

Author: Nikolay Sivov <nsivov at 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)




More information about the wine-cvs mailing list