summaryrefslogtreecommitdiff
path: root/sd/source/ui/view/drtxtob1.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/view/drtxtob1.cxx')
-rw-r--r--sd/source/ui/view/drtxtob1.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/view/drtxtob1.cxx b/sd/source/ui/view/drtxtob1.cxx
index 2d6b18aba829..f550f9d99967 100644
--- a/sd/source/ui/view/drtxtob1.cxx
+++ b/sd/source/ui/view/drtxtob1.cxx
@@ -158,7 +158,7 @@ void TextObjectBar::Execute( SfxRequest &rReq )
else
{
nUpper -= 100;
- nUpper = Max( (long) nUpper, 0L );
+ nUpper = std::max( (long) nUpper, 0L );
}
pNewItem->SetUpper( (sal_uInt16) nUpper );
@@ -168,7 +168,7 @@ void TextObjectBar::Execute( SfxRequest &rReq )
else
{
nLower -= 100;
- nLower = Max( (long) nLower, 0L );
+ nLower = std::max( (long) nLower, 0L );
}
pNewItem->SetLower( (sal_uInt16) nLower );
@@ -199,7 +199,7 @@ void TextObjectBar::Execute( SfxRequest &rReq )
else
{
nUpper -= 100;
- nUpper = Max( (long) nUpper, 0L );
+ nUpper = std::max( (long) nUpper, 0L );
}
pNewItem->SetUpper( (sal_uInt16) nUpper );
@@ -209,7 +209,7 @@ void TextObjectBar::Execute( SfxRequest &rReq )
else
{
nLower -= 100;
- nLower = Max( (long) nLower, 0L );
+ nLower = std::max( (long) nLower, 0L );
}
pNewItem->SetLower( (sal_uInt16) nLower );