fix some stupid typos (implementation was good, typing it failed :)) from yesterdays checkin

This commit is contained in:
alecf%netscape.com 2000-08-02 07:59:17 +00:00
Родитель da15eda254
Коммит 916d7102bb
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -159,13 +159,13 @@ function WM_ProgressUpdate( currentPageNumber )
if ( statusbar ) {
var string;
try {
dump("mapLength = " + this.GetMapLength() + "\n");
string = this.bundle.formatStringFromName("oflabel",
[currentPageNumber,
this.GetMapLength], 2);
[currentPageNumber+1,
this.GetMapLength()], 2);
} catch (e) {
string = "";
}
string += this.GetMapLength();
statusbar.setAttribute( "progress", string );
}
}