Commit 7690a91a authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

shell32: Return S_OK from IShellLink::SetFlags() stub.

parent dda10458
...@@ -2297,7 +2297,7 @@ static HRESULT WINAPI ...@@ -2297,7 +2297,7 @@ static HRESULT WINAPI
ShellLink_SetFlags( IShellLinkDataList* iface, DWORD dwFlags ) ShellLink_SetFlags( IShellLinkDataList* iface, DWORD dwFlags )
{ {
FIXME("(%p)->(%u): stub\n", iface, dwFlags); FIXME("(%p)->(%u): stub\n", iface, dwFlags);
return E_NOTIMPL; return S_OK;
} }
static const IShellLinkDataListVtbl dlvt = static const IShellLinkDataListVtbl dlvt =
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment