Twiddle parentheses a little bit. Bug 311415 followup, r+sr=dbaron

This commit is contained in:
bzbarsky@mit.edu 2007-05-09 19:55:15 -07:00
Родитель 4e6c54649d
Коммит 20e95343df
2 изменённых файлов: 3 добавлений и 3 удалений

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

@ -207,8 +207,8 @@ static inline PRBool IsFixedWidth(const nsStyleCoord& aCoord)
return aCoord.GetUnit() == eStyleUnit_Coord ||
aCoord.GetUnit() == eStyleUnit_Chars ||
(aCoord.GetUnit() == eStyleUnit_Enumerated &&
aCoord.GetIntValue() == NS_STYLE_WIDTH_INTRINSIC ||
aCoord.GetIntValue() == NS_STYLE_WIDTH_MIN_INTRINSIC);
(aCoord.GetIntValue() == NS_STYLE_WIDTH_INTRINSIC ||
aCoord.GetIntValue() == NS_STYLE_WIDTH_MIN_INTRINSIC));
}
static inline PRBool IsFixedMaxWidth(const nsStyleCoord& aCoord)

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

@ -707,7 +707,7 @@ WidthDependsOnContainer(const nsStyleCoord& aCoord)
return aCoord.GetUnit() == eStyleUnit_Percent ||
(aCoord.GetUnit() == eStyleUnit_Enumerated &&
(aCoord.GetIntValue() == NS_STYLE_WIDTH_FILL ||
(aCoord.GetIntValue() == NS_STYLE_WIDTH_SHRINK_WRAP)));
aCoord.GetIntValue() == NS_STYLE_WIDTH_SHRINK_WRAP));
}