mshtml: Call SetStatusText in set_parsecomplete.

This commit is contained in:
Jacek Caban 2006-11-02 17:33:55 +01:00 committed by Alexandre Julliard
parent f09890eade
commit 0cd636c355
1 changed files with 6 additions and 1 deletions

View File

@ -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};