diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-05 14:03:25 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-05 14:05:38 +0200 |
commit | 57f94390c3d4e3faf2a5d80d22954edb9042761c (patch) | |
tree | 347b326c7a5277889cb26c4ef18e7d783a69db02 /vcl/qt5 | |
parent | ec920ed0ecc9cb42b900138a299bf070dc86103c (diff) |
fix qt5 plugin
after commit
commit 7accac097688832d8682a88a0176c3e1482ffade
Date: Fri Jan 5 11:12:54 2018 +0200
tdf#114837 FILEOPEN: Image is blank
Change-Id: I2f89e7d292a658ef99f93281a318046c4e9329be
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 49b7a22e6fb2..0f312e0057e2 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_uInt8 nTol) +bool Qt5Bitmap::Replace(const Color& rSearchColor, const Color& rReplaceColor, sal_uLong nTol) { return false; } diff --git a/vcl/qt5/Qt5Bitmap.hxx b/vcl/qt5/Qt5Bitmap.hxx index 6ecdebed5ca1..c8d35e2050cc 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_uInt8 nTol) override; + sal_uLong nTol) override; }; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |