summaryrefslogtreecommitdiff
path: root/svx/source/table/tablelayouter.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/table/tablelayouter.cxx')
-rw-r--r--svx/source/table/tablelayouter.cxx24
1 files changed, 0 insertions, 24 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;