11 Apr
2023
11 Apr
'23
11:37 a.m.
Nikolay Sivov (@nsivov) commented about dlls/shell32/shlview.c:
+ + if (flags == FWF_NONE) + This->FolderSettings.fFlags &= ~mask; + else + This->FolderSettings.fFlags |= flags & mask; + + return S_OK; }
static HRESULT WINAPI FolderView2_GetCurrentFolderFlags(IFolderView2 *iface, DWORD *flags) { IShellViewImpl *This = impl_from_IFolderView2(iface); - FIXME("(%p)->(%p), stub\n", This, flags); - return E_NOTIMPL; + + TRACE("(%p)->(%p).\n", This, flags); Same regarding formatting here, and in other places.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/2628#note_29583