diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-08 09:05:58 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-08 09:05:58 +0200 |
commit | 2b946181595d198809e8a6a3fb82fd965ac911fa (patch) | |
tree | 777e0907d97ad184f4f6af7d19dfc8da04144d34 /vcl/qt5 | |
parent | 4f65853df16a599fe81576bbccbca6ea78488d54 (diff) |
fix qt5 plugin
after
commit b0fd921441e1e1066e232282843317514375c8ec
Date: Fri Jan 5 13:24:28 2018 +0200
convert tolerance params to sal_uInt8 (second try)
Change-Id: I15c2f0a3724976f17bb83e1d07639296cfbb3051
Diffstat (limited to 'vcl/qt5')
-rw-r--r-- | vcl/qt5/Qt5Bitmap.cxx | 2 | ||||
-rw-r--r-- | vcl/qt5/Qt5Bitmap.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/vcl/qt5/Qt5Bitmap.cxx b/vcl/qt5/Qt5Bitmap.cxx index 0f312e0057e2..49b7a22e6fb2 100644 --- a/vcl/qt5/Qt5Bitmap.cxx +++ b/vcl/qt5/Qt5Bitmap.cxx @@ -239,7 +239,7 @@ bool Qt5Bitmap::Scale(const double& rScaleX, const double& rScaleY, BmpScaleFlag return false; } -bool Qt5Bitmap::Replace(const Color& rSearchColor, const Color& rReplaceColor, sal_uLong nTol) +bool Qt5Bitmap::Replace(const Color& rSearchColor, const Color& rReplaceColor, sal_uInt8 nTol) { return false; } diff --git a/vcl/qt5/Qt5Bitmap.hxx b/vcl/qt5/Qt5Bitmap.hxx index c8d35e2050cc..6ecdebed5ca1 100644 --- a/vcl/qt5/Qt5Bitmap.hxx +++ b/vcl/qt5/Qt5Bitmap.hxx @@ -61,7 +61,7 @@ public: virtual bool Scale(const double& rScaleX, const double& rScaleY, BmpScaleFlag nScaleFlag) override; virtual bool Replace(const Color& rSearchColor, const Color& rReplaceColor, - sal_uLong nTol) override; + sal_uInt8 nTol) override; }; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |