diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-01-24 11:08:48 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-01-24 16:53:56 +0000 |
commit | 17ecf0036d44657b954de6c8f7efd536ab5c4809 (patch) | |
tree | 313962191e32e2ab611e3e25b8237b6ad76a329b /svx | |
parent | 45350532879f8b33741fa1ac012aa43a776ebdf5 (diff) |
callcatcher: update list, remove newly unused methods
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/table/tablelayouter.cxx | 24 | ||||
-rw-r--r-- | svx/source/table/tablelayouter.hxx | 6 |
2 files changed, 0 insertions, 30 deletions
diff --git a/svx/source/table/tablelayouter.cxx b/svx/source/table/tablelayouter.cxx index 2842ecf2c7a4..7cd35560bab3 100644 --- a/svx/source/table/tablelayouter.cxx +++ b/svx/source/table/tablelayouter.cxx @@ -164,20 +164,6 @@ sal_Int32 TableLayouter::getRowHeight( sal_Int32 nRow ) const } // ----------------------------------------------------------------------------- - -void TableLayouter::setRowHeight( sal_Int32 nRow, sal_Int32 nHeight ) -{ - if( isValidRow(nRow) ) - { - maRows[nRow].mnSize = nHeight; - } - else - { - OSL_FAIL( "TableLayouter::setRowHeight(), row out of range!" ); - } -} - -// ----------------------------------------------------------------------------- sal_Int32 TableLayouter::getColumnWidth( sal_Int32 nColumn ) const { if( isValidColumn(nColumn) ) @@ -188,16 +174,6 @@ sal_Int32 TableLayouter::getColumnWidth( sal_Int32 nColumn ) const // ----------------------------------------------------------------------------- -void TableLayouter::setColumnWidth( sal_Int32 nColumn, sal_Int32 nWidth ) -{ - if( isValidColumn(nColumn) ) - maColumns[nColumn].mnSize = nWidth; - else - OSL_FAIL( "TableLayouter::setColumnWidth(), column out of range!" ); -} - -// ----------------------------------------------------------------------------- - bool TableLayouter::isEdgeVisible( sal_Int32 nEdgeX, sal_Int32 nEdgeY, bool bHorizontal ) const { const BorderLineMap& rMap = bHorizontal ? maHorizontalBorders : maVerticalBorders; diff --git a/svx/source/table/tablelayouter.hxx b/svx/source/table/tablelayouter.hxx index 98b3157a8f5f..7381255c3503 100644 --- a/svx/source/table/tablelayouter.hxx +++ b/svx/source/table/tablelayouter.hxx @@ -88,14 +88,8 @@ public: ::sal_Int32 getColumnCount() const { return static_cast< ::sal_Int32 >( maColumns.size() ); } sal_Int32 getRowHeight( sal_Int32 nRow ) const; - // sets the layout height of the given row hard, LayoutTable must be called directly after calling this method! */ - void setRowHeight( sal_Int32 nRow, sal_Int32 nHeight ); - sal_Int32 getColumnWidth( sal_Int32 nColumn ) const; - // sets the layout width of the given column hard, LayoutTable must be called directly after calling this method! */ - void setColumnWidth( sal_Int32 nColumn, sal_Int32 nWidth ); - sal_Int32 getMinimumColumnWidth( sal_Int32 nColumn ); /** checks if the given edge is visible. |