summaryrefslogtreecommitdiff
path: root/sw/source/core/text/txtftn.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/text/txtftn.cxx')
-rw-r--r--sw/source/core/text/txtftn.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/text/txtftn.cxx b/sw/source/core/text/txtftn.cxx
index 9d4a338f12dc..7293b43fa6af 100644
--- a/sw/source/core/text/txtftn.cxx
+++ b/sw/source/core/text/txtftn.cxx
@@ -268,9 +268,9 @@ static SwTwips lcl_GetFtnLower( const SwTxtFrm* pFrm, SwTwips nLower )
}
if ( bVert )
- nRet = Min( nRet, nFlyLower );
+ nRet = std::min( nRet, nFlyLower );
else
- nRet = Max( nRet, nFlyLower );
+ nRet = std::max( nRet, nFlyLower );
return nRet;
}