diff options
author | Einar Egilsson | 2009-11-14 06:36:38 +0000 |
---|---|---|
committer | Einar Egilsson | 2009-11-14 06:36:38 +0000 |
commit | a941a19a9033902b25576f3d2975c94cdaf4b875 (patch) | |
tree | d0cbafba0d52f2f0377f1fbd9d36d21d2e485992 /chrome | |
parent | 245fdbbe5b566c73108701816064bded8966499f (diff) |
Bugfixes.
2.0.1 release
git-svn-id: http://einaregilsson.googlecode.com/svn/mozilla/redirector/trunk@304 119bf307-c92d-0410-89bd-8f53e6181181
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/content/code/browserOverlay.xul.js | 2 | ||||
-rw-r--r-- | chrome/content/code/redirector.prototype.js | 2 | ||||
-rw-r--r-- | chrome/content/code/redirectorprefs.js (renamed from chrome/content/code/prefs.js) | 4 | ||||
-rw-r--r-- | chrome/content/code/settings.xul.js | 2 | ||||
-rw-r--r-- | chrome/content/ui/browserOverlay.xul | 2 | ||||
-rw-r--r-- | chrome/content/ui/settings.xul | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/chrome/content/code/browserOverlay.xul.js b/chrome/content/code/browserOverlay.xul.js index e194e5f..19a37df 100644 --- a/chrome/content/code/browserOverlay.xul.js +++ b/chrome/content/code/browserOverlay.xul.js @@ -15,7 +15,7 @@ var RedirectorOverlay = { .addEventListener("popupshowing", function(e) { RedirectorOverlay.showContextMenu(e); }, false); this.strings = document.getElementById("redirector-strings"); - this.prefs = new Prefs(); + this.prefs = new RedirectorPrefs(); this.changedPrefs(this.prefs); this.prefs.addListener(this); } catch(e) { diff --git a/chrome/content/code/redirector.prototype.js b/chrome/content/code/redirector.prototype.js index ecdcbd3..8f4cf6a 100644 --- a/chrome/content/code/redirector.prototype.js +++ b/chrome/content/code/redirector.prototype.js @@ -237,7 +237,7 @@ Redirector.prototype = { if (this._prefs) {
this._prefs.dispose();
}
- this._prefs = new Prefs();
+ this._prefs = new RedirectorPrefs();
//Check if we need to update existing redirects
var data = this._prefs.redirects;
var version = this._prefs.version;
diff --git a/chrome/content/code/prefs.js b/chrome/content/code/redirectorprefs.js index 055293b..52c3056 100644 --- a/chrome/content/code/prefs.js +++ b/chrome/content/code/redirectorprefs.js @@ -1,10 +1,10 @@ // $Id$
-function Prefs() {
+function RedirectorPrefs() {
this.init();
}
-Prefs.prototype = {
+RedirectorPrefs.prototype = {
//Preferences:
_version : null,
diff --git a/chrome/content/code/settings.xul.js b/chrome/content/code/settings.xul.js index 21f514f..4fa65a2 100644 --- a/chrome/content/code/settings.xul.js +++ b/chrome/content/code/settings.xul.js @@ -35,7 +35,7 @@ var Settings = { this.chkShowContextMenu = document.getElementById('chkShowContextMenu');
this.chkEnableDebugOutput = document.getElementById('chkEnableDebugOutput');
- this.prefs = new Prefs();
+ this.prefs = new RedirectorPrefs();
//Preferences
this.changedPrefs(this.prefs);
this.prefs.addListener(this);
diff --git a/chrome/content/ui/browserOverlay.xul b/chrome/content/ui/browserOverlay.xul index 9a72e52..32bf1d5 100644 --- a/chrome/content/ui/browserOverlay.xul +++ b/chrome/content/ui/browserOverlay.xul @@ -4,7 +4,7 @@ <overlay id="redirector-overlay" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> <script src="../code/redirect.js"/> - <script src="../code/prefs.js"/> + <script src="../code/redirectorprefs.js"/> <script src="../code/browserOverlay.xul.js"/> <stringbundleset id="stringbundleset"> diff --git a/chrome/content/ui/settings.xul b/chrome/content/ui/settings.xul index cc9cbf4..27f16dd 100644 --- a/chrome/content/ui/settings.xul +++ b/chrome/content/ui/settings.xul @@ -16,7 +16,7 @@ xmlns:nc="http://home.netscape.com/NC-rdf#"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
- <script type="application/x-javascript" src="../code/prefs.js"/>
+ <script type="application/x-javascript" src="../code/redirectorprefs.js"/>
<script type="application/x-javascript" src="../code/redirect.js"/>
<script type="application/x-javascript" src="../code/settings.xul.js"/>
<stringbundleset id="stringbundleset">
|