diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-04-05 08:10:46 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-04-05 08:10:46 -0400 |
commit | 6fde853fa8276926f30c7135bdd5f68de3afc35a (patch) | |
tree | 7412498c4796458ddd8a507cef3e126b6ad06a12 /application/palemoon/components/places/content | |
parent | 321121c827f3da8734a1f852021ff8cfdbc9084f (diff) | |
download | UXP-6fde853fa8276926f30c7135bdd5f68de3afc35a.tar UXP-6fde853fa8276926f30c7135bdd5f68de3afc35a.tar.gz UXP-6fde853fa8276926f30c7135bdd5f68de3afc35a.tar.lz UXP-6fde853fa8276926f30c7135bdd5f68de3afc35a.tar.xz UXP-6fde853fa8276926f30c7135bdd5f68de3afc35a.zip |
[PALEMOON] Fix redeclarations of shorthand Cc, Ci, Cu
Diffstat (limited to 'application/palemoon/components/places/content')
-rw-r--r-- | application/palemoon/components/places/content/placesOverlay.xul | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/application/palemoon/components/places/content/placesOverlay.xul b/application/palemoon/components/places/content/placesOverlay.xul index dd4d50f01..30319a6ac 100644 --- a/application/palemoon/components/places/content/placesOverlay.xul +++ b/application/palemoon/components/places/content/placesOverlay.xul @@ -20,8 +20,8 @@ <script type="application/javascript"><![CDATA[ // TODO: Bug 406371. // A bunch of browser code depends on us defining these, sad but true :( - var Cc = Components.classes; - var Ci = Components.interfaces; + // var Cc = Components.classes; + // var Ci = Components.interfaces; var Cr = Components.results; Components.utils.import("resource://gre/modules/PlacesUtils.jsm"); |