Making this file compile on Mac. Not part of default build.

This commit is contained in:
peterv%netscape.com 2001-04-03 12:38:50 +00:00
Родитель 0982f6830b
Коммит d09c310f89
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -268,9 +268,9 @@ inCSSValueSearch::SearchStyleSheet(nsIStyleSheet* aStyleSheet)
nsCOMPtr<nsICSSStyleSheet> cssSheet = do_QueryInterface(aStyleSheet);
if (cssSheet) {
// recurse downward through the stylesheet tree
PRInt32 count;
PRInt32 count, i;
cssSheet->StyleSheetCount(count);
for (PRInt32 i = 0; i < count; i++) {
for (i = 0; i < count; i++) {
nsICSSStyleSheet* child;
cssSheet->GetStyleSheetAt(i, child);
SearchStyleSheet(child);