vcl/qt5/Qt5Bitmap.cxx | 2 +- vcl/qt5/Qt5Bitmap.hxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
New commits: commit 57f94390c3d4e3faf2a5d80d22954edb9042761c Author: Noel Grandin <[email protected]> Date: Fri Jan 5 14:03:25 2018 +0200 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 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: */ _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
