Alistair Leslie-Hughes : inetcomm: Return S_OK from IMimePropertySchema ModifyProperty.

Alexandre Julliard julliard at winehq.org
Fri May 27 09:42:32 CDT 2016


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

Author: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Date:   Wed May 25 06:13:44 2016 +0000

inetcomm: Return S_OK from IMimePropertySchema ModifyProperty.

Signed-off-by: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

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

diff --git a/dlls/inetcomm/mimeole.c b/dlls/inetcomm/mimeole.c
index 14739ab..0288b59 100644
--- a/dlls/inetcomm/mimeole.c
+++ b/dlls/inetcomm/mimeole.c
@@ -3178,7 +3178,7 @@ static HRESULT WINAPI propschema_ModifyProperty(IMimePropertySchema *iface, cons
 {
     propschema *This = impl_from_IMimePropertySchema(iface);
     FIXME("(%p)->(%s, %x, %d, %d) stub\n", This, debugstr_a(name), flags, rownumber, vtdefault);
-    return E_NOTIMPL;
+    return S_OK;
 }
 
 static HRESULT WINAPI propschema_GetPropertyId(IMimePropertySchema *iface, const char *name, DWORD *propid)




More information about the wine-cvs mailing list