Commit 0cd636c3 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Call SetStatusText in set_parsecomplete.

parent f09890ea
......@@ -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};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment