1
0
mirror of https://github.com/moparisthebest/FireTray synced 2024-08-13 15:53:47 -04:00
This commit is contained in:
foudfou 2012-03-08 23:52:07 +01:00
parent c6be061070
commit bfb9f30b4a

View File

@ -3,7 +3,7 @@
/* for now, logging facilities (imported from logging.jsm) are automatically /* for now, logging facilities (imported from logging.jsm) are automatically
provided by this module */ provided by this module */
var EXPORTED_SYMBOLS = var EXPORTED_SYMBOLS =
[ "firetray", "LOG", "WARN", "ERROR", "FIRETRAY_ID", "FIRETRAY_SPLASH_PAGE", [ "firetray", "FIRETRAY_ID", "FIRETRAY_SPLASH_PAGE",
"FIRETRAY_NOTIFICATION_UNREAD_MESSAGE_COUNT", "FIRETRAY_NOTIFICATION_UNREAD_MESSAGE_COUNT",
"FIRETRAY_NOTIFICATION_NEWMAIL_ICON", "FIRETRAY_NOTIFICATION_CUSTOM_ICON", "FIRETRAY_NOTIFICATION_NEWMAIL_ICON", "FIRETRAY_NOTIFICATION_CUSTOM_ICON",
"FIRETRAY_DELAY_BROWSER_STARTUP_MILLISECONDS", "FIRETRAY_DELAY_BROWSER_STARTUP_MILLISECONDS",
@ -74,7 +74,7 @@ firetray.Utils = {
QueryInterfaces: function(obj) { QueryInterfaces: function(obj) {
for each (i in Components.interfaces) for each (i in Components.interfaces)
try { try {
if (obj instanceof i) LOG (i); if (obj instanceof i) firetray.LOG (i);
} catch(x) {} } catch(x) {}
}, },