Bug 483736: switch to 'let' instead of 'const' for Cc, Ci and Cu, r=gavin

This commit is contained in:
Mark Finkle 2009-03-16 23:27:29 -05:00
parent 44ef67e0c0
commit a01fc3c92e

View File

@ -41,9 +41,9 @@
*
* ***** END LICENSE BLOCK ***** */
const Cc = Components.classes;
const Ci = Components.interfaces;
const Cu = Components.utils;
let Cc = Components.classes;
let Ci = Components.interfaces;
let Cu = Components.utils;
const FINDSTATE_FIND = 0;
const FINDSTATE_FIND_AGAIN = 1;
@ -92,7 +92,7 @@ var Browser = {
}
gSidebarVisible = visibleNow;
}
// move checkerboard
browserContainer.style.backgroundPosition = -vr.left + "px " + -vr.top + "px";