mshtml: Added semi stub IsDirty implementation.

This commit is contained in:
Jacek Caban 2007-06-11 00:21:14 +02:00 committed by Alexandre Julliard
parent b0fc3115c9
commit a8db342430

View file

@ -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)