This is a better fix for the build bustage caused by the checkin for bug 294086. Thanks to Peter Annema for explaining the issue (don't assign to rvalues) and this fix.

This commit is contained in:
jwatt@jwatt.org 2007-11-18 06:22:55 -08:00
Родитель 4840695be9
Коммит 2fc1d7dac5
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -1735,7 +1735,7 @@ IsAutoHeight(const nsStyleCoord &aCoord, nscoord aCBHeight)
/* static */ nsSize
nsLayoutUtils::ComputeSizeWithIntrinsicDimensions(
nsIRenderingContext* aRenderingContext, nsIFrame* aFrame,
nsIFrame::IntrinsicSize aIntrinsicSize,
const nsIFrame::IntrinsicSize& aIntrinsicSize,
nsSize aIntrinsicRatio, nsSize aCBSize,
nsSize aMargin, nsSize aBorder, nsSize aPadding)
{

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

@ -626,7 +626,7 @@ public:
*/
static nsSize ComputeSizeWithIntrinsicDimensions(
nsIRenderingContext* aRenderingContext, nsIFrame* aFrame,
nsIFrame::IntrinsicSize aIntrinsicSize,
const nsIFrame::IntrinsicSize& aIntrinsicSize,
nsSize aIntrinsicRatio, nsSize aCBSize,
nsSize aMargin, nsSize aBorder, nsSize aPadding);