This commit is contained in:
cls%seawood.org 2003-10-07 22:43:54 +00:00
Родитель 0810949538
Коммит 650ad3bf45
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -1287,7 +1287,9 @@ PRInt32
nsHTMLDocument::InternalGetNumberOfStyleSheets()
{
PRInt32 count = mStyleSheets.Count();
if (count != 0 && mStyleAttrStyleSheet == mStyleSheets[count - 1])
if (count != 0 &&
mStyleAttrStyleSheet ==
NS_STATIC_CAST(nsIStyleSheet*, mStyleSheets[count - 1]))
--count;
--count; // for the attr sheet
NS_ASSERTION(count >= 0, "Why did we end up with a negative count?");