diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-09-08 18:09:08 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-09-09 07:54:03 +0200 |
commit | 8083f6b7ed7ec3e72c896e3707c21457dbe173e3 (patch) | |
tree | 5975975aa17d6afaa26457d13528a26517f48fea /svtools/source/uno | |
parent | dd0ceb50c2d95ac0587db2c983ac58f2e3b13028 (diff) |
Remove unused function params
Change-Id: I1b72a95b7367bb555d37a9a073ca4da2b01cf53f
Diffstat (limited to 'svtools/source/uno')
-rw-r--r-- | svtools/source/uno/unocontroltablemodel.cxx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/svtools/source/uno/unocontroltablemodel.cxx b/svtools/source/uno/unocontroltablemodel.cxx index 714093305dda..59e22fbb9a3b 100644 --- a/svtools/source/uno/unocontroltablemodel.cxx +++ b/svtools/source/uno/unocontroltablemodel.cxx @@ -261,7 +261,7 @@ namespace svt { namespace table ++loop ) { - (*loop)->columnRemoved( i_position ); + (*loop)->columnRemoved(); } // dispose the column @@ -896,8 +896,6 @@ namespace svt { namespace table void UnoControlTableModel::notifyDataChanged( ::com::sun::star::awt::grid::GridDataEvent const & i_event ) const { - ColPos const firstCol = i_event.FirstColumn == -1 ? 0 : i_event.FirstColumn; - ColPos const lastCol = i_event.FirstColumn == -1 ? getColumnCount() - 1 : i_event.LastColumn; RowPos const firstRow = i_event.FirstRow == -1 ? 0 : i_event.FirstRow; RowPos const lastRow = i_event.FirstRow == -1 ? getRowCount() - 1 : i_event.LastRow; @@ -907,7 +905,7 @@ namespace svt { namespace table ++loop ) { - (*loop)->cellsUpdated( firstCol, lastCol, firstRow, lastRow ); + (*loop)->cellsUpdated( firstRow, lastRow ); } } @@ -920,7 +918,7 @@ namespace svt { namespace table ++loop ) { - (*loop)->cellsUpdated( 0, getColumnCount() - 1, 0, getRowCount() - 1 ); + (*loop)->cellsUpdated( 0, getRowCount() - 1 ); } } |