diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-08 09:38:24 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-08 09:38:24 +0200 |
commit | a4ca332afd13d3f9309eee4b48d93bfe3b2a4fe1 (patch) | |
tree | 022f74b55fe9b3022585ec734bf525a8cc17b17d /vcl/qt5/Qt5Graphics_Controls.cxx | |
parent | 2b946181595d198809e8a6a3fb82fd965ac911fa (diff) |
-Wunused-parameter in qt5 plugin
Change-Id: I2d17ccdc9addb911fef8925d87b794075946c3ca
Diffstat (limited to 'vcl/qt5/Qt5Graphics_Controls.cxx')
-rw-r--r-- | vcl/qt5/Qt5Graphics_Controls.cxx | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/vcl/qt5/Qt5Graphics_Controls.cxx b/vcl/qt5/Qt5Graphics_Controls.cxx index a55b8dda235a..ca064ece5e13 100644 --- a/vcl/qt5/Qt5Graphics_Controls.cxx +++ b/vcl/qt5/Qt5Graphics_Controls.cxx @@ -19,28 +19,30 @@ #include "Qt5Graphics.hxx" -bool Qt5Graphics::IsNativeControlSupported(ControlType nType, ControlPart nPart) { return false; } +bool Qt5Graphics::IsNativeControlSupported(ControlType /*nType*/, ControlPart /*nPart*/) +{ + return false; +} -bool Qt5Graphics::hitTestNativeControl(ControlType nType, ControlPart nPart, - const tools::Rectangle& rControlRegion, const Point& aPos, - bool& rIsInside) +bool Qt5Graphics::hitTestNativeControl(ControlType /*nType*/, ControlPart /*nPart*/, + const tools::Rectangle& /*rControlRegion*/, + const Point& /*aPos*/, bool& /*rIsInside*/) { return false; } -bool Qt5Graphics::drawNativeControl(ControlType nType, ControlPart nPart, - const tools::Rectangle& rControlRegion, ControlState nState, - const ImplControlValue& aValue, const OUString& aCaption) +bool Qt5Graphics::drawNativeControl(ControlType /*nType*/, ControlPart /*nPart*/, + const tools::Rectangle& /*rControlRegion*/, + ControlState /*nState*/, const ImplControlValue& /*aValue*/, + const OUString& /*aCaption*/) { return false; } -bool Qt5Graphics::getNativeControlRegion(ControlType nType, ControlPart nPart, - const tools::Rectangle& rControlRegion, - ControlState nState, const ImplControlValue& aValue, - const OUString& aCaption, - tools::Rectangle& rNativeBoundingRegion, - tools::Rectangle& rNativeContentRegion) +bool Qt5Graphics::getNativeControlRegion( + ControlType /*nType*/, ControlPart /*nPart*/, const tools::Rectangle& /*rControlRegion*/, + ControlState /*nState*/, const ImplControlValue& /*aValue*/, const OUString& /*aCaption*/, + tools::Rectangle& /*rNativeBoundingRegion*/, tools::Rectangle& /*rNativeContentRegion*/) { return false; } |