summaryrefslogtreecommitdiff
path: root/vcl/source/control/imgctrl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/control/imgctrl.cxx')
-rw-r--r--vcl/source/control/imgctrl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/control/imgctrl.cxx b/vcl/source/control/imgctrl.cxx
index 4ecda5b1ee99..73094dfcc454 100644
--- a/vcl/source/control/imgctrl.cxx
+++ b/vcl/source/control/imgctrl.cxx
@@ -54,7 +54,7 @@ namespace
const double nRatioY = 1.0 * aPaintSize.Height() / _rBitmapSize.Height();
const double nRatioMin = ::std::min( nRatioX, nRatioY );
- return Size( long( _rBitmapSize.Width() * nRatioMin ), long( _rBitmapSize.Height() * nRatioMin ) );
+ return Size( tools::Long( _rBitmapSize.Width() * nRatioMin ), tools::Long( _rBitmapSize.Height() * nRatioMin ) );
}
Point lcl_centerWithin( const tools::Rectangle& _rArea, const Size& _rObjectSize )