diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-03 11:39:22 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-03 13:13:17 +0200 |
commit | d5630adf33cc7d30a657e789e2bf0978028e0c1f (patch) | |
tree | 881a26b1980a617793f030028b0c8a69a8e672df /vcl/inc | |
parent | 70d0425dd4fffd51170ccf0ca12a28870b0b7b1a (diff) |
loplugin:checkunusedparams in various
Change-Id: I4f54940a9ebdcd47776b2a5f7bae6e49b633ee44
Reviewed-on: https://gerrit.libreoffice.org/40706
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/unx/gtk/gtkgdi.hxx | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/vcl/inc/unx/gtk/gtkgdi.hxx b/vcl/inc/unx/gtk/gtkgdi.hxx index 8c552393e578..4b0a670763da 100644 --- a/vcl/inc/unx/gtk/gtkgdi.hxx +++ b/vcl/inc/unx/gtk/gtkgdi.hxx @@ -226,8 +226,7 @@ private: cairo_t *cr, const tools::Rectangle& rControlRectangle, ControlType nType, - ControlPart nPart, - const ImplControlValue& aValue); + ControlPart nPart); static void PaintCheckOrRadio(cairo_t *cr, GtkStyleContext *context, const tools::Rectangle& rControlRectangle, bool bIsCheck, bool bInMenu); @@ -303,7 +302,6 @@ protected: const std::list< tools::Rectangle >& aClip, ControlState nState, const ImplControlValue& aValue, - const OUString& rCaption, ControlCacheKey& rControlCacheKey); bool NWPaintGTKArrow( GdkDrawable* gdkDrawable, @@ -342,21 +340,18 @@ protected: bool NWPaintGTKScrollbar( ControlPart nPart, const tools::Rectangle& rControlRectangle, ControlState nState, const ImplControlValue& aValue ); - bool NWPaintGTKEditBox( GdkDrawable* gdkDrawable, ControlType nType, ControlPart nPart, + bool NWPaintGTKEditBox( GdkDrawable* gdkDrawable, ControlType nType, const tools::Rectangle& rControlRectangle, const std::list< tools::Rectangle >& rClipList, - ControlState nState, const ImplControlValue& aValue, - const OUString& rCaption ); + ControlState nState ); bool NWPaintGTKSpinBox(ControlType nType, ControlPart nPart, const tools::Rectangle& rControlRectangle, ControlState nState, const ImplControlValue& aValue, - const OUString& rCaption, ControlCacheKey& rControlCacheKey); bool NWPaintGTKComboBox( GdkDrawable* gdkDrawable, ControlType nType, ControlPart nPart, const tools::Rectangle& rControlRectangle, const std::list< tools::Rectangle >& rClipList, - ControlState nState, const ImplControlValue& aValue, - const OUString& rCaption ); + ControlState nState ); bool NWPaintGTKTabItem( ControlType nType, const tools::Rectangle& rControlRectangle, ControlState nState, const ImplControlValue& aValue ); |