summaryrefslogtreecommitdiff
path: root/sw/source/core/layout/flycnt.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/layout/flycnt.cxx')
-rw-r--r--sw/source/core/layout/flycnt.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/core/layout/flycnt.cxx b/sw/source/core/layout/flycnt.cxx
index d1bcb832c9b9..41057cdf31d2 100644
--- a/sw/source/core/layout/flycnt.cxx
+++ b/sw/source/core/layout/flycnt.cxx
@@ -917,10 +917,10 @@ static sal_uLong lcl_FindCntDiff( const Point &rPt, const SwLayoutFrm *pLay,
{
//Calculate the distance between those two points.
//'delta' X^2 + 'delta' Y^2 = 'distance'^2
- sal_uInt32 dX = Max( pCnt->Frm().Left(), rPt.X() ) -
- Min( pCnt->Frm().Left(), rPt.X() ),
- dY = Max( pCnt->Frm().Top(), rPt.Y() ) -
- Min( pCnt->Frm().Top(), rPt.Y() );
+ sal_uInt32 dX = std::max( pCnt->Frm().Left(), rPt.X() ) -
+ std::min( pCnt->Frm().Left(), rPt.X() ),
+ dY = std::max( pCnt->Frm().Top(), rPt.Y() ) -
+ std::min( pCnt->Frm().Top(), rPt.Y() );
BigInt dX1( dX ), dY1( dY );
dX1 *= dX1; dY1 *= dY1;
const sal_uLong nDiff = ::SqRt( dX1 + dY1 );