Bug 289223 nsMsgStatusFeedback prototype uses myDefaultStatus incorrectly

p=me r=neil.parkwaycc.co.uk sr=bienvenu a=asa
This commit is contained in:
bugzilla%arlen.demon.co.uk 2005-04-07 17:04:03 +00:00
Родитель d7293225e2
Коммит 44a780ce95
2 изменённых файлов: 6 добавлений и 6 удалений

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

@ -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()