Changeset 167
- Timestamp:
- 2007-03-21 20:39:51 (2 years ago)
- Files:
-
- trunk/chrome/content/common/overlayFunctions.js (modified) (1 diff)
- trunk/components/filterManager.js (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/chrome/content/common/overlayFunctions.js
r157 r167 47 47 DTA_include("chrome://dta/content/common/regconvert.js"); 48 48 49 var DTA_FilterManager = Components.classes['@ tn123.ath.cx/dtamod/filtermanager;1']49 var DTA_FilterManager = Components.classes['@downthemall.net/filtermanager;1'] 50 50 .getService(Components.interfaces.dtaIFilterManager); 51 51 trunk/components/filterManager.js
r90 r167 63 63 // nsIClassInfo 64 64 classID: Components.ID("{3F872ADC-35A4-4c79-B771-F2BC130FB792}"), 65 contractID: "@ tn123.ath.cx/dtamod/filter;1",66 classDescription: "DownT HEMAll! ModFilter",65 contractID: "@downthemall.net/filter;1", 66 classDescription: "DownThemAll! Filter", 67 67 implementationLanguage: 0x02, 68 68 flags: (1 << 2), // MAIN_THREAD_ONLY … … 313 313 // nsIClassInfo 314 314 classID: Components.ID("{3F872ADC-35A4-4c79-B771-F2BC130FB791}"), 315 contractID: "@ tn123.ath.cx/dtamod/filtermanager;1",316 classDescription: "DownT HEMAll! ModFiltermanager",315 contractID: "@downthemall.net/filtermanager;1", 316 classDescription: "DownThemAll! Filtermanager", 317 317 implementationLanguage: 0x02, 318 318 flags: (1 << 0) | (1 << 2), // SINGLETON | MAIN_THREAD_ONLY … … 517 517 518 518 // nsIObserver 519 observe : function FM_observe(subject, topic, prefName) {519 observe: function FM_observe(subject, topic, prefName) { 520 520 this._delayedReload(); 521 521 }, … … 586 586 587 587 // nsIFactory 588 QueryInter ace : function(aIID) {588 QueryInterface : function(aIID) { 589 589 if (aIID.equals(CI.nsIFactory)) { 590 590 return this;
