Nikolay Sivov : d2d1: Return S_OK from RegisterEffectFromString().

Alexandre Julliard julliard at winehq.org
Thu Oct 18 15:02:45 CDT 2018


Module: wine
Branch: master
Commit: 48bcae100eea82ce0199c40d3712e25a9cb54d81
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=48bcae100eea82ce0199c40d3712e25a9cb54d81

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Thu Oct 18 16:19:27 2018 +0300

d2d1: Return S_OK from RegisterEffectFromString().

Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/d2d1/factory.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/d2d1/factory.c b/dlls/d2d1/factory.c
index 8d9d8c3..dea25ef 100644
--- a/dlls/d2d1/factory.c
+++ b/dlls/d2d1/factory.c
@@ -480,7 +480,7 @@ static HRESULT STDMETHODCALLTYPE d2d_factory_RegisterEffectFromString(ID2D1Facto
     FIXME("iface %p, effect_id %s, property_xml %s, bindings %p, binding_count %u, effect_factory %p stub!\n",
             iface, debugstr_guid(effect_id), debugstr_w(property_xml), bindings, binding_count, effect_factory);
 
-    return E_NOTIMPL;
+    return S_OK;
 }
 
 static HRESULT STDMETHODCALLTYPE d2d_factory_UnregisterEffect(ID2D1Factory1 *iface, REFCLSID effect_id)




More information about the wine-cvs mailing list