Changed it so that if there's a NULL URL then we set the mLoadImageFailed

flag and don't try and load the broken image URL. Only on Windows for now
until Mac and Unix support the image icons


git-svn-id: svn://10.0.0.236/trunk@14596 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
troy%netscape.com 1998-11-13 17:00:54 +00:00
parent 867d43cb50
commit ae5da1b1b1
2 changed files with 10 additions and 0 deletions

View File

@ -145,7 +145,12 @@ nsHTMLImageLoader::StartLoadImage(nsIPresContext* aPresContext,
nsresult rv;
nsAutoString src;
if (mLoadImageFailed || (nsnull == mURLSpec)) {
#ifdef _WIN32
mLoadImageFailed = PR_TRUE;
return NS_OK;
#else
src.Append(BROKEN_IMAGE_URL);
#endif
} else {
nsAutoString baseURL;
if (nsnull != mBaseHREF) {

View File

@ -145,7 +145,12 @@ nsHTMLImageLoader::StartLoadImage(nsIPresContext* aPresContext,
nsresult rv;
nsAutoString src;
if (mLoadImageFailed || (nsnull == mURLSpec)) {
#ifdef _WIN32
mLoadImageFailed = PR_TRUE;
return NS_OK;
#else
src.Append(BROKEN_IMAGE_URL);
#endif
} else {
nsAutoString baseURL;
if (nsnull != mBaseHREF) {