summaryrefslogtreecommitdiff
path: root/vcl/source/bitmap/BitmapDuoToneFilter.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/bitmap/BitmapDuoToneFilter.cxx')
-rw-r--r--vcl/source/bitmap/BitmapDuoToneFilter.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/bitmap/BitmapDuoToneFilter.cxx b/vcl/source/bitmap/BitmapDuoToneFilter.cxx
index 65d4b3f41442..3bcf1035a4c7 100644
--- a/vcl/source/bitmap/BitmapDuoToneFilter.cxx
+++ b/vcl/source/bitmap/BitmapDuoToneFilter.cxx
@@ -27,8 +27,8 @@ BitmapEx BitmapDuoToneFilter::execute(BitmapEx const& rBitmapEx) const
{
Bitmap aBitmap(rBitmapEx.GetBitmap());
- const long nWidth = aBitmap.GetSizePixel().Width();
- const long nHeight = aBitmap.GetSizePixel().Height();
+ const tools::Long nWidth = aBitmap.GetSizePixel().Width();
+ const tools::Long nHeight = aBitmap.GetSizePixel().Height();
Bitmap aResultBitmap(aBitmap.GetSizePixel(), 24);
Bitmap::ScopedReadAccess pReadAcc(aBitmap);
@@ -40,9 +40,9 @@ BitmapEx BitmapDuoToneFilter::execute(BitmapEx const& rBitmapEx) const
static_cast<sal_uInt8>(mnColorTwo >> 8),
static_cast<sal_uInt8>(mnColorTwo));
- for (long x = 0; x < nWidth; x++)
+ for (tools::Long x = 0; x < nWidth; x++)
{
- for (long y = 0; y < nHeight; y++)
+ for (tools::Long y = 0; y < nHeight; y++)
{
BitmapColor aColor = pReadAcc->GetColor(y, x);
sal_uInt8 nLuminance = aColor.GetLuminance();