Bug 231893 - Allow QI to nsISupports.

r+sr=blake
p=116057@bacon.qcc.mass.edu (Justin Wood)
This commit is contained in:
silver%warwickcompsoc.co.uk 2004-10-11 03:04:47 +00:00
Родитель 5896c71a2f
Коммит d9b0e617fb
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -102,7 +102,9 @@ var progressListener = {
QueryInterface: function (iid)
{
if (iid.equals(Components.interfaces.nsIWebProgressListener) || iid.equals(Components.interfaces.nsISupportsWeakReference))
if (iid.equals(Components.interfaces.nsIWebProgressListener) ||
iid.equals(Components.interfaces.nsISupportsWeakReference) ||
iid.equals(Components.interfaces.nsISupports))
return this;
throw Components.results.NS_NOINTERFACE;
}