зеркало из https://github.com/mozilla/pjs.git
Make the status bar read-only
This commit is contained in:
Родитель
cd57cede8d
Коммит
93e856fa41
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче