mshtml: Call SetStatusText in set_parsecomplete.
This commit is contained in:
parent
f09890eade
commit
0cd636c355
|
@ -97,7 +97,7 @@ static void set_downloading(HTMLDocument *doc)
|
|||
|
||||
TRACE("(%p)\n", doc);
|
||||
|
||||
if(doc->frame)
|
||||
if(doc->frame)
|
||||
IOleInPlaceFrame_SetStatusText(doc->frame, NULL /* FIXME */);
|
||||
|
||||
if(!doc->client)
|
||||
|
@ -160,6 +160,11 @@ static void set_parsecomplete(HTMLDocument *doc)
|
|||
doc->readystate = READYSTATE_COMPLETE;
|
||||
call_property_onchanged(doc->cp_propnotif, DISPID_READYSTATE);
|
||||
|
||||
if(doc->frame) {
|
||||
static const WCHAR wszDone[] = {'D','o','n','e',0};
|
||||
IOleInPlaceFrame_SetStatusText(doc->frame, wszDone);
|
||||
}
|
||||
|
||||
if(olecmd) {
|
||||
VARIANT title;
|
||||
WCHAR empty[] = {0};
|
||||
|
|
Loading…
Reference in New Issue