diff options
Diffstat (limited to 'chrome/content/redirlib.js')
-rw-r--r-- | chrome/content/redirlib.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/content/redirlib.js b/chrome/content/redirlib.js index 493c583..71856dd 100644 --- a/chrome/content/redirlib.js +++ b/chrome/content/redirlib.js @@ -66,6 +66,10 @@ var RedirLib = { return this._prefBranch.getCharPref(branch);
},
+ setCharPref : function(branch, value) {
+ return this._prefBranch.setCharPref(branch, value);
+ },
+
getBoolPref : function(branch) {
return this._prefBranch.getBoolPref(branch);
},
|