Fix bogus return value on GetImageMap

git-svn-id: svn://10.0.0.236/trunk@17876 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
joki%netscape.com
1999-01-15 22:26:30 +00:00
parent 221a2bc36c
commit b10f143b39
2 changed files with 2 additions and 2 deletions

View File

@@ -392,7 +392,7 @@ nsHTMLDocument::GetImageMap(const nsString& aMapName,
}
}
return 1;/* XXX NS_NOT_FOUND */
return NS_ERROR_FAILURE;
}
NS_IMETHODIMP nsHTMLDocument::GetAttributeStyleSheet(nsIHTMLStyleSheet** aResult)