From a8db34243040061eb0608b5aa192b6e097f2721c Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Mon, 11 Jun 2007 00:21:14 +0200 Subject: [PATCH] mshtml: Added semi stub IsDirty implementation. --- dlls/mshtml/persist.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/dlls/mshtml/persist.c b/dlls/mshtml/persist.c index cb1025bad96..13c07d44030 100644 --- a/dlls/mshtml/persist.c +++ b/dlls/mshtml/persist.c @@ -565,8 +565,13 @@ static HRESULT WINAPI PersistStreamInit_GetClassID(IPersistStreamInit *iface, CL static HRESULT WINAPI PersistStreamInit_IsDirty(IPersistStreamInit *iface) { HTMLDocument *This = PERSTRINIT_THIS(iface); - FIXME("(%p)\n", This); - return E_NOTIMPL; + + TRACE("(%p)\n", This); + + if(This->usermode == EDITMODE) + FIXME("Unimplemented in edit mode\n"); + + return S_FALSE; } static HRESULT WINAPI PersistStreamInit_Load(IPersistStreamInit *iface, LPSTREAM pStm)