summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2018-09-20 00:12:25 +0200
committerJan Holesovsky <kendy@collabora.com>2018-11-08 09:14:37 +0100
commite08293b0d3c11f5299aa9236feaafdb7628da10e (patch)
tree09ace7a07aab961895b54cefc4a5388fcc66ea6e
parent241822e4ebba3bd7c6b8fc9cb1430eb939493d3c (diff)
custom widgets: comment unused params. to avoid compile warnings
Change-Id: I45b7ffdce2d470ed2f30b5408d8d861deb00514a
-rw-r--r--vcl/source/gdi/salnativewidgets-none.cxx30
1 files 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 <salgdi.hxx>
-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;
}