Quiet some silly warnings. Bug 72164, patch by Eric Lawrence

<elawrenc69@yahoo.com>, r+sr=bzbarsky, a=asa
This commit is contained in:
bzbarsky%mit.edu 2003-05-21 02:06:01 +00:00
Родитель 4f8b956fce
Коммит 4655878078
2 изменённых файлов: 4 добавлений и 4 удалений

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

@ -416,7 +416,7 @@ nscoord nsStyleUtil::FindNextSmallerFontSize(nscoord aFontSize, PRInt32 aBasePoi
PRInt32 indexMax;
float relativePosition;
nscoord smallerSize;
nscoord indexFontSize;
nscoord indexFontSize = aFontSize; // XXX initialize to quell a spurious gcc3.2 warning
nscoord smallestIndexFontSize;
nscoord largestIndexFontSize;
nscoord smallerIndexFontSize;
@ -484,7 +484,7 @@ nscoord nsStyleUtil::FindNextLargerFontSize(nscoord aFontSize, PRInt32 aBasePoin
PRInt32 indexMax;
float relativePosition;
nscoord largerSize;
nscoord indexFontSize;
nscoord indexFontSize = aFontSize; // XXX initialize to quell a spurious gcc3.2 warning
nscoord smallestIndexFontSize;
nscoord largestIndexFontSize;
nscoord smallerIndexFontSize;

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

@ -416,7 +416,7 @@ nscoord nsStyleUtil::FindNextSmallerFontSize(nscoord aFontSize, PRInt32 aBasePoi
PRInt32 indexMax;
float relativePosition;
nscoord smallerSize;
nscoord indexFontSize;
nscoord indexFontSize = aFontSize; // XXX initialize to quell a spurious gcc3.2 warning
nscoord smallestIndexFontSize;
nscoord largestIndexFontSize;
nscoord smallerIndexFontSize;
@ -484,7 +484,7 @@ nscoord nsStyleUtil::FindNextLargerFontSize(nscoord aFontSize, PRInt32 aBasePoin
PRInt32 indexMax;
float relativePosition;
nscoord largerSize;
nscoord indexFontSize;
nscoord indexFontSize = aFontSize; // XXX initialize to quell a spurious gcc3.2 warning
nscoord smallestIndexFontSize;
nscoord largestIndexFontSize;
nscoord smallerIndexFontSize;