1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-14 14:15:47 +01:00

Remove some Hungarian notation.

This commit is contained in:
Doug Kearns
2009-05-12 18:24:12 +10:00
parent a1c53bbdb0
commit 47a5c73a5b
4 changed files with 16 additions and 15 deletions

View File

@@ -1750,14 +1750,14 @@ function Events() //{{{
this._branch.removeObserver("", this);
},
observe: function (aSubject, aTopic, aData)
observe: function (subject, topic, data)
{
if (aTopic != "nsPref:changed")
if (topic != "nsPref:changed")
return;
// aSubject is the nsIPrefBranch we're observing (after appropriate QI)
// aData is the name of the pref that's been changed (relative to aSubject)
switch (aData)
// subject is the nsIPrefBranch we're observing (after appropriate QI)
// data is the name of the pref that's been changed (relative to subject)
switch (data)
{
case "accessibility.browsewithcaret":
let value = options.getPref("accessibility.browsewithcaret", false);