summaryrefslogtreecommitdiff
path: root/vcl/source/bitmap/BitmapFilterStackBlur.cxx
diff options
context:
space:
mode:
authorNoel <noelgrandin@gmail.com>2020-10-26 14:17:32 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-10-28 07:21:59 +0100
commit6436302f40252bc6619e304e2051115fee902e20 (patch)
treea32659b4fecc9fbf8fad3e379ddd8645a2a52e0b /vcl/source/bitmap/BitmapFilterStackBlur.cxx
parent35f16614ee7ddf518d4c01de6b1d800f5ff1ba7e (diff)
convert some more long -> tools::Long
grepping for stuff in template params this time Change-Id: Ia37bfd85480b3a72c3c465489581d56ad8dde851 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104855 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/source/bitmap/BitmapFilterStackBlur.cxx')
-rw-r--r--vcl/source/bitmap/BitmapFilterStackBlur.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/vcl/source/bitmap/BitmapFilterStackBlur.cxx b/vcl/source/bitmap/BitmapFilterStackBlur.cxx
index 66645077eb0f..9bf4b810ac60 100644
--- a/vcl/source/bitmap/BitmapFilterStackBlur.cxx
+++ b/vcl/source/bitmap/BitmapFilterStackBlur.cxx
@@ -74,12 +74,12 @@ struct BlurArrays
BlurSharedData maShared;
std::vector<sal_uInt8> maStackBuffer;
- std::vector<long> maPositionTable;
- std::vector<long> maWeightTable;
+ std::vector<tools::Long> maPositionTable;
+ std::vector<tools::Long> maWeightTable;
- std::vector<long> mnSumVector;
- std::vector<long> mnInSumVector;
- std::vector<long> mnOutSumVector;
+ std::vector<tools::Long> mnSumVector;
+ std::vector<tools::Long> mnInSumVector;
+ std::vector<tools::Long> mnOutSumVector;
BlurArrays(BlurSharedData const& rShared)
: maShared(rShared)