From e08293b0d3c11f5299aa9236feaafdb7628da10e Mon Sep 17 00:00:00 2001 From: Tomaž Vajngerl Date: Thu, 20 Sep 2018 00:12:25 +0200 Subject: custom widgets: comment unused params. to avoid compile warnings Change-Id: I45b7ffdce2d470ed2f30b5408d8d861deb00514a --- vcl/source/gdi/salnativewidgets-none.cxx | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/vcl/source/gdi/salnativewidgets-none.cxx b/vcl/source/gdi/salnativewidgets-none.cxx index 5fa71d19eb0b..a7086023cad6 100644 --- a/vcl/source/gdi/salnativewidgets-none.cxx +++ b/vcl/source/gdi/salnativewidgets-none.cxx @@ -19,33 +19,33 @@ #include -bool SalGraphics::IsNativeControlSupported(ControlType eType, ControlPart ePart) +bool SalGraphics::IsNativeControlSupported(ControlType /*eType*/, ControlPart /*ePart*/) { return false; } -bool SalGraphics::hitTestNativeControl(ControlType eType, ControlPart ePart, - const tools::Rectangle& rBoundingControlRegion, - const Point& rPosition, bool& rIsInside) +bool SalGraphics::hitTestNativeControl(ControlType /*eType*/, ControlPart /*ePart*/, + const tools::Rectangle& /*rBoundingControlRegion*/, + const Point& /*rPosition*/, bool& /*rIsInside*/) { return false; } -bool SalGraphics::drawNativeControl(ControlType eType, ControlPart ePart, - const tools::Rectangle& rBoundingControlRegion, - ControlState eState, const ImplControlValue& aValue, - const OUString& aCaptions) +bool SalGraphics::drawNativeControl(ControlType /*eType*/, ControlPart /*ePart*/, + const tools::Rectangle& /*rBoundingControlRegion*/, + ControlState /*eState*/, const ImplControlValue& /*aValue*/, + const OUString& /*aCaptions*/) { return false; } -bool SalGraphics::getNativeControlRegion(ControlType eType, ControlPart ePart, - const tools::Rectangle& rBoundingControlRegion, - ControlState eState, - const ImplControlValue& aValue, - const OUString& aCaption, - tools::Rectangle& rNativeBoundingRegion, - tools::Rectangle& rNativeContentRegion) +bool SalGraphics::getNativeControlRegion(ControlType /*eType*/, ControlPart /*ePart*/, + const tools::Rectangle& /*rBoundingControlRegion*/, + ControlState /*eState*/, + const ImplControlValue& /*aValue*/, + const OUString& /*aCaption*/, + tools::Rectangle& /*rNativeBoundingRegion*/, + tools::Rectangle& /*rNativeContentRegion*/) { return false; } -- cgit v1.2.3