summaryrefslogtreecommitdiff
path: root/vcl/source/control/spinfld.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/control/spinfld.cxx')
-rw-r--r--vcl/source/control/spinfld.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/control/spinfld.cxx b/vcl/source/control/spinfld.cxx
index 16dea7e8d30c..dd1f60951304 100644
--- a/vcl/source/control/spinfld.cxx
+++ b/vcl/source/control/spinfld.cxx
@@ -254,7 +254,7 @@ void ImplDrawSpinButton( OutputDevice* pOutDev,
// calculate Symbol size
long nTempSize1 = aUpRect.GetWidth();
long nTempSize2 = aLowRect.GetWidth();
- if ( Abs( nTempSize1-nTempSize2 ) == 1 )
+ if ( std::abs( nTempSize1-nTempSize2 ) == 1 )
{
if ( nTempSize1 > nTempSize2 )
aUpRect.Left()++;
@@ -263,7 +263,7 @@ void ImplDrawSpinButton( OutputDevice* pOutDev,
}
nTempSize1 = aUpRect.GetHeight();
nTempSize2 = aLowRect.GetHeight();
- if ( Abs( nTempSize1-nTempSize2 ) == 1 )
+ if ( std::abs( nTempSize1-nTempSize2 ) == 1 )
{
if ( nTempSize1 > nTempSize2 )
aUpRect.Top()++;