From 8083f6b7ed7ec3e72c896e3707c21457dbe173e3 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 8 Sep 2015 18:09:08 +0200 Subject: Remove unused function params Change-Id: I1b72a95b7367bb555d37a9a073ca4da2b01cf53f --- svtools/source/table/tablecontrol_impl.cxx | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'svtools/source/table/tablecontrol_impl.cxx') diff --git a/svtools/source/table/tablecontrol_impl.cxx b/svtools/source/table/tablecontrol_impl.cxx index d99e88e7a8ac..74234c5279f9 100644 --- a/svtools/source/table/tablecontrol_impl.cxx +++ b/svtools/source/table/tablecontrol_impl.cxx @@ -434,7 +434,7 @@ namespace svt { namespace table } - void TableControl_Impl::columnRemoved( ColPos const i_colIndex ) + void TableControl_Impl::columnRemoved() { m_nColumnCount = m_pModel->getColumnCount(); @@ -450,8 +450,6 @@ namespace svt { namespace table impl_ni_relayout(); m_rAntiImpl.Invalidate(); - - OSL_UNUSED( i_colIndex ); } @@ -464,12 +462,9 @@ namespace svt { namespace table } - void TableControl_Impl::cellsUpdated( ColPos const i_firstCol, ColPos i_lastCol, RowPos const i_firstRow, RowPos const i_lastRow ) + void TableControl_Impl::cellsUpdated( RowPos const i_firstRow, RowPos const i_lastRow ) { invalidateRowRange( i_firstRow, i_lastRow ); - - OSL_UNUSED( i_firstCol ); - OSL_UNUSED( i_lastCol ); } -- cgit