summaryrefslogtreecommitdiff
path: root/svtools/source/table/tablecontrol_impl.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-09-08 18:09:08 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-09-09 07:54:03 +0200
commit8083f6b7ed7ec3e72c896e3707c21457dbe173e3 (patch)
tree5975975aa17d6afaa26457d13528a26517f48fea /svtools/source/table/tablecontrol_impl.cxx
parentdd0ceb50c2d95ac0587db2c983ac58f2e3b13028 (diff)
Remove unused function params
Change-Id: I1b72a95b7367bb555d37a9a073ca4da2b01cf53f
Diffstat (limited to 'svtools/source/table/tablecontrol_impl.cxx')
-rw-r--r--svtools/source/table/tablecontrol_impl.cxx9
1 files changed, 2 insertions, 7 deletions
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 );
}