summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel <noelgrandin@gmail.com>2020-11-12 14:50:16 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-11-13 12:25:12 +0100
commitabd42bdc86904d1b310e8298393c887e0c195499 (patch)
tree980c10fe687a52272830de739b5967893b3fbb67 /include
parentf2dfa6bec9895892b58e22682ecdc5865fc249a3 (diff)
tools::Long->sal_Int32 in vcl filters
Change-Id: I39cf98d1dc3f04ca91856f125b0a5b4fe1dfe237 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105749 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/vcl/BitmapConvolutionMatrixFilter.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/BitmapConvolutionMatrixFilter.hxx b/include/vcl/BitmapConvolutionMatrixFilter.hxx
index 2d787cefe19f..a504ff0eebbe 100644
--- a/include/vcl/BitmapConvolutionMatrixFilter.hxx
+++ b/include/vcl/BitmapConvolutionMatrixFilter.hxx
@@ -20,7 +20,7 @@ class BitmapEx;
class VCL_DLLPUBLIC BitmapConvolutionMatrixFilter : public BitmapFilter
{
public:
- BitmapConvolutionMatrixFilter(const tools::Long (&rMatrix)[9])
+ BitmapConvolutionMatrixFilter(const sal_Int32 (&rMatrix)[9])
: mrMatrix(rMatrix)
{
}
@@ -28,7 +28,7 @@ public:
virtual BitmapEx execute(BitmapEx const& rBitmapEx) const override;
private:
- const tools::Long (&mrMatrix)[9];
+ const sal_Int32 (&mrMatrix)[9];
};
#endif