Missed one nsresult->bool fix.

This commit is contained in:
Joe Drew 2009-10-28 17:29:12 -04:00
Родитель 01ee7a737c
Коммит f5785e49ae
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -112,7 +112,7 @@ DocumentRendererChild::RenderDocument(nsIDOMWindow *window, const PRInt32& x, co
}
}
if (!presContext)
return NS_ERROR_FAILURE;
return false;
nscolor bgColor;
nsCOMPtr<nsICSSParser> parser = do_CreateInstance("@mozilla.org/content/css-parser;1");