diff options
Diffstat (limited to 'dw')
-rw-r--r-- | dw/outofflowmgr.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dw/outofflowmgr.cc b/dw/outofflowmgr.cc index 08167788..49babdab 100644 --- a/dw/outofflowmgr.cc +++ b/dw/outofflowmgr.cc @@ -1501,8 +1501,8 @@ void OutOfFlowMgr::ensureFloatSize (Float *vloat) (absLengthVal (vloat->widget->getStyle()->width)); else if (isPerLength (vloat->widget->getStyle()->width)) vloat->widget->setWidth - (containingBlock->getAvailWidth() - * perLengthVal (vloat->widget->getStyle()->width)); + (multiplyWithPerLength (containingBlock->getAvailWidth(), + vloat->widget->getStyle()->width)); } // This is a bit hackish: We first request the size, then set @@ -1679,7 +1679,7 @@ int OutOfFlowMgr::calcValueForAbsolutelyPositioned if (isAbsLength (styleLen)) return absLengthVal (styleLen); else if (isPerLength (styleLen)) - return refLen * perLengthVal (styleLen); + return multiplyWithPerLength (refLen, styleLen); else { assertNotReached (); return 0; // compiler happiness |