diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-12-13 14:30:30 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-12-13 14:30:30 +0100 |
commit | 1d6b85f85925c3b4d2d2bb8eaf237b10bb8f7d60 (patch) | |
tree | a6822da8d5074c39dc4d41d356555c4cbd072818 /vcl/qt5 | |
parent | 07138b4f5cd5dc2585b9f63f68f3e2badd34d3c7 (diff) |
Fix --enable-qt5
...after e75abe6e0a4ea250366bb29c0ece697e9b1b80a1 "convert tolerance params to
sal_uInt8"
Change-Id: I6677fa21d4786ebadcded53e1542514465d5d0a2
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: */ |