From 87661a7ab3275195ca251188ce4d7825fd038de6 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 2 May 2017 16:23:46 +0200 Subject: loplugin:checkunusedparams in sd Change-Id: I217a4177e9c2cdc2d85100d253f7f38ec8aad756 Reviewed-on: https://gerrit.libreoffice.org/37162 Tested-by: Jenkins Reviewed-by: Noel Grandin --- sd/source/ui/view/tabcontr.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sd/source/ui/view/tabcontr.cxx') diff --git a/sd/source/ui/view/tabcontr.cxx b/sd/source/ui/view/tabcontr.cxx index bbb7598bba31..7b60cc3796d5 100644 --- a/sd/source/ui/view/tabcontr.cxx +++ b/sd/source/ui/view/tabcontr.cxx @@ -57,9 +57,9 @@ bool TabControl::TabControlTransferable::GetData( const css::datatransfer::DataF return false; } -void TabControl::TabControlTransferable::DragFinished( sal_Int8 nDropAction ) +void TabControl::TabControlTransferable::DragFinished( sal_Int8 /*nDropAction*/ ) { - mrParent.DragFinished( nDropAction ); + mrParent.DragFinished(); } TabControl::TabControl(DrawViewShell* pViewSh, vcl::Window* pParent) : @@ -163,7 +163,7 @@ void TabControl::StartDrag( sal_Int8, const Point& ) ( new TabControl::TabControlTransferable( *this ) )->StartDrag( this, DND_ACTION_COPYMOVE ); } -void TabControl::DragFinished( sal_Int8 ) +void TabControl::DragFinished() { bInternalMove = false; } -- cgit