diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-03 12:57:10 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-03 16:34:31 +0200 |
commit | 09f77e8ed51fc64fccc6a14e87eed48b2f15a28d (patch) | |
tree | 2446785df473c004b44bbf03f8eb76584868a1e6 /svx | |
parent | f29aa28100b899252a3419578be5d39e84863c36 (diff) |
loplugin:unusedmethods
Change-Id: I9790d053248ae6bd58ecc026c774014c4e5e04aa
Reviewed-on: https://gerrit.libreoffice.org/80115
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/table/tablerow.cxx | 5 | ||||
-rw-r--r-- | svx/source/table/tablerow.hxx | 2 |
2 files changed, 0 insertions, 7 deletions
diff --git a/svx/source/table/tablerow.cxx b/svx/source/table/tablerow.cxx index 5623007e69a8..f7ca4d8d40d0 100644 --- a/svx/source/table/tablerow.cxx +++ b/svx/source/table/tablerow.cxx @@ -153,11 +153,6 @@ const TableModelRef& TableRow::getModel() const return mxTableModel; } -sal_Int32 TableRow::getHeight() const -{ - return mnHeight; -} - // XCellRange diff --git a/svx/source/table/tablerow.hxx b/svx/source/table/tablerow.hxx index c45957962208..5c14452831b1 100644 --- a/svx/source/table/tablerow.hxx +++ b/svx/source/table/tablerow.hxx @@ -50,8 +50,6 @@ public: void removeColumns( sal_Int32 nIndex, sal_Int32 nCount ); /// Reference to the table model containing this row. const TableModelRef& getModel() const; - /// Get the height of this row. - sal_Int32 getHeight() const; // XCellRange virtual css::uno::Reference< css::table::XCell > SAL_CALL getCellByPosition( sal_Int32 nColumn, sal_Int32 nRow ) override; |