зеркало из https://github.com/mozilla/pjs.git
Bug 289223 nsMsgStatusFeedback prototype uses myDefaultStatus incorrectly
p=me r=neil.parkwaycc.co.uk sr=bienvenu a=asa
This commit is contained in:
Родитель
d7293225e2
Коммит
44a780ce95
|
@ -300,7 +300,7 @@ nsMsgStatusFeedback.prototype =
|
|||
{
|
||||
if (status.length > 0)
|
||||
{
|
||||
myDefaultStatus = status;
|
||||
this.myDefaultStatus = status;
|
||||
this.statusTextFld.label = status;
|
||||
}
|
||||
},
|
||||
|
@ -323,9 +323,9 @@ nsMsgStatusFeedback.prototype =
|
|||
{
|
||||
this.ensureStatusFields();
|
||||
if ( !statusText.length )
|
||||
statusText = myDefaultStatus;
|
||||
statusText = this.myDefaultStatus;
|
||||
else
|
||||
myDefaultStatus = "";
|
||||
this.myDefaultStatus = "";
|
||||
this.statusTextFld.label = statusText;
|
||||
},
|
||||
_startMeteors : function()
|
||||
|
|
|
@ -350,7 +350,7 @@ nsMsgStatusFeedback.prototype =
|
|||
{
|
||||
if (status.length > 0)
|
||||
{
|
||||
myDefaultStatus = status;
|
||||
this.myDefaultStatus = status;
|
||||
this.statusTextFld.label = status;
|
||||
}
|
||||
},
|
||||
|
@ -373,9 +373,9 @@ nsMsgStatusFeedback.prototype =
|
|||
{
|
||||
this.ensureStatusFields();
|
||||
if ( !statusText.length )
|
||||
statusText = myDefaultStatus;
|
||||
statusText = this.myDefaultStatus;
|
||||
else
|
||||
myDefaultStatus = "";
|
||||
this.myDefaultStatus = "";
|
||||
this.statusTextFld.label = statusText;
|
||||
},
|
||||
_startMeteors : function()
|
||||
|
|
Загрузка…
Ссылка в новой задаче