bug 372573 - Replace invalid error codes with NS_ERROR_NO_INTERFACE. r1=ctalbert, r2=jminta

This commit is contained in:
mattwillis%gmail.com 2007-03-06 22:53:21 +00:00
Родитель 4128717293
Коммит ad5aa4e5cd
3 изменённых файлов: 3 добавлений и 3 удалений

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

@ -1052,7 +1052,7 @@ WebDavResource.prototype = {
return this;
}
throw Components.interfaces.NS_NO_INTERFACE;
throw Components.interfaces.NS_ERROR_NO_INTERFACE;
}
};

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

@ -924,7 +924,7 @@ WebDavResource.prototype = {
iid.equals(CI.nsISupports)) {
return this;
}
throw Components.interfaces.NS_NO_INTERFACE;
throw Components.interfaces.NS_ERROR_NO_INTERFACE;
}
};

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

@ -85,7 +85,7 @@ Resource.prototype = {
return this;
}
throw Components.interfaces.NS_NO_INTERFACE;
throw Components.interfaces.NS_ERROR_NO_INTERFACE;
}
};