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

git-svn-id: svn://10.0.0.236/trunk@221415 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mattwillis%gmail.com
2007-03-06 22:53:39 +00:00
parent f2869b04fd
commit 001de9fb57
3 changed files with 3 additions and 3 deletions

View File

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

View File

@@ -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;
}
};

View File

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