1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-04 17:34:12 +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

@@ -187,9 +187,9 @@ const config = { //{{{
var stateListener =
{
QueryInterface: function (aIID)
QueryInterface: function (id)
{
if (aIID.equals(Components.interfaces.nsIDocumentStateListener))
if (id.equals(Components.interfaces.nsIDocumentStateListener))
return this;
throw Components.results.NS_NOINTERFACE;
},