Module: wine Branch: master Commit: 0ab71185034a065d1e6161b7226292c2e4ef4c70 URL: https://source.winehq.org/git/wine.git/?a=commit;h=0ab71185034a065d1e6161b72...
Author: Nikolay Sivov nsivov@codeweavers.com Date: Thu Oct 18 16:19:28 2018 +0300
d2d1: Return S_OK from d2d_effect_SetValue().
Signed-off-by: Nikolay Sivov nsivov@codeweavers.com Signed-off-by: Henri Verbeet hverbeet@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/d2d1/effect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/d2d1/effect.c b/dlls/d2d1/effect.c index f5e501f..cfb8255 100644 --- a/dlls/d2d1/effect.c +++ b/dlls/d2d1/effect.c @@ -120,7 +120,7 @@ static HRESULT STDMETHODCALLTYPE d2d_effect_SetValue(ID2D1Effect *iface, UINT32 { FIXME("iface %p, index %u, type %#x, value %p, value_size %u stub!\n", iface, index, type, value, value_size);
- return E_NOTIMPL; + return S_OK; }
static HRESULT STDMETHODCALLTYPE d2d_effect_GetValueByName(ID2D1Effect *iface, const WCHAR *name,