summaryrefslogtreecommitdiff
path: root/sw/source/core/text/itratr.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/text/itratr.cxx')
-rw-r--r--sw/source/core/text/itratr.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/text/itratr.cxx b/sw/source/core/text/itratr.cxx
index cd011028cf6f..d95ee5500f49 100644
--- a/sw/source/core/text/itratr.cxx
+++ b/sw/source/core/text/itratr.cxx
@@ -922,7 +922,7 @@ sal_uInt16 SwTxtNode::GetScalingOfSelectedText( xub_StrLen nStt, xub_StrLen nEnd
if ( cChar == CH_BREAK )
{
- nWidth = Max( nWidth, nProWidth );
+ nWidth = std::max( nWidth, nProWidth );
nProWidth = 0;
nIdx++;
}
@@ -973,7 +973,7 @@ sal_uInt16 SwTxtNode::GetScalingOfSelectedText( xub_StrLen nStt, xub_StrLen nEnd
} // end of while
}
- nWidth = Max( nWidth, nProWidth );
+ nWidth = std::max( nWidth, nProWidth );
// search for a text frame this node belongs to
SwIterator<SwTxtFrm,SwTxtNode> aFrmIter( *this );