clicking on link in Software Update slideup notifier does nothing

This commit is contained in:
ben%bengoodger.com 2004-07-12 23:24:49 +00:00
Родитель bfef8f0ae5
Коммит 74fe091c2f
1 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -572,6 +572,17 @@ nsUpdateObserver.prototype = {
updates.checkForUpdates([], 0, Components.interfaces.nsIUpdateItem.TYPE_ANY,
Components.interfaces.nsIUpdateService.SOURCE_EVENT_USER,
null);
},
/////////////////////////////////////////////////////////////////////////////
// nsISupports
QueryInterface: function (aIID)
{
if (!aIID.equals(Components.interfaces.nsIObserver) &&
!aIID.equals(Components.interfaces.nsIAlertListener) &&
!aIID.equals(Components.interfaces.nsISupports))
throw Components.results.NS_ERROR_NO_INTERFACE;
return this;
}
};