summaryrefslogtreecommitdiff
path: root/svx/source
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2012-01-21 01:38:01 +0100
committerThomas Arnhold <thomas@arnhold.org>2012-01-21 19:58:45 +0100
commit3bb278f5bfa1cb28ba051bc6980a93d52f9b29e1 (patch)
treee8bdc6a946d63f7ea7a343af86a3285982ccb8a8 /svx/source
parent89898395899f4b2935689a5666d0734ba3d63511 (diff)
unused methods
Diffstat (limited to 'svx/source')
-rw-r--r--svx/source/table/tablelayouter.cxx22
-rw-r--r--svx/source/table/tablelayouter.hxx3
2 files changed, 0 insertions, 25 deletions
diff --git a/svx/source/table/tablelayouter.cxx b/svx/source/table/tablelayouter.cxx
index 18e833201de2..2842ecf2c7a4 100644
--- a/svx/source/table/tablelayouter.cxx
+++ b/svx/source/table/tablelayouter.cxx
@@ -1172,28 +1172,6 @@ void TableLayouter::SetWritingMode( com::sun::star::text::WritingMode eWritingMo
meWritingMode = eWritingMode;
}
-// -----------------------------------------------------------------------------
-
-sal_Int32 TableLayouter::getColumnStart( sal_Int32 nColumn ) const
-{
- if( isValidColumn(nColumn) )
- return maColumns[nColumn].mnPos;
- else
- return 0;
-}
-
-// -----------------------------------------------------------------------------
-
-sal_Int32 TableLayouter::getRowStart( sal_Int32 nRow ) const
-{
- if( isValidRow(nRow) )
- return maRows[nRow].mnPos;
- else
- return 0;
-}
-
-// -----------------------------------------------------------------------------
-
} }
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/svx/source/table/tablelayouter.hxx b/svx/source/table/tablelayouter.hxx
index e95159075b46..98b3157a8f5f 100644
--- a/svx/source/table/tablelayouter.hxx
+++ b/svx/source/table/tablelayouter.hxx
@@ -98,9 +98,6 @@ public:
sal_Int32 getMinimumColumnWidth( sal_Int32 nColumn );
- sal_Int32 getColumnStart( sal_Int32 nColumn ) const;
- sal_Int32 getRowStart( sal_Int32 nRow ) const;
-
/** checks if the given edge is visible.
Edges between merged cells are not visible.
*/