This commit is contained in:
sfraser%netscape.com 1999-01-16 00:29:07 +00:00
Родитель cd57cede8d
Коммит 93e856fa41
1 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -1432,6 +1432,15 @@ nsBrowserWindow::CreateStatusBar(PRInt32 aWidth)
widget->SetForegroundColor(NS_RGB(0, 0, 0)); widget->SetForegroundColor(NS_RGB(0, 0, 0));
PRUint32 size; PRUint32 size;
mStatus->SetText("",size); mStatus->SetText("",size);
nsITextWidget* textWidget = nsnull;
if (NS_OK == mStatus->QueryInterface(kITextWidgetIID,(void**)&textWidget))
{
PRBool wasReadOnly;
textWidget->SetReadOnly(PR_TRUE, wasReadOnly);
NS_RELEASE(textWidget);
}
NS_RELEASE(widget); NS_RELEASE(widget);
} }