зеркало из https://github.com/mozilla/pjs.git
Allow windows text widgets to update readonly state on the fly, as gtk already does.
This commit is contained in:
Родитель
e44de70e8e
Коммит
7077aab8e4
|
@ -94,6 +94,8 @@ NS_METHOD nsTextHelper::SetReadOnly(PRBool aReadOnlyFlag, PRBool& aOldFlag)
|
||||||
{
|
{
|
||||||
aOldFlag = mIsReadOnly;
|
aOldFlag = mIsReadOnly;
|
||||||
mIsReadOnly = aReadOnlyFlag;
|
mIsReadOnly = aReadOnlyFlag;
|
||||||
|
// Update the widget
|
||||||
|
::SendMessage(mWnd, EM_SETREADONLY, (WPARAM) (BOOL)aReadOnlyFlag, (LPARAM)0);
|
||||||
return NS_OK;
|
return NS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче