summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-09-26 08:17:45 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-09-26 20:13:30 +0200
commit250c2ec78b9218a4d42f1fc6cdb12b15687d6eeb (patch)
treea5b3b64983515f412e5994e7baa33674e8cf8b7c /svtools
parentb56a4eaf5eb856c36d3539dc7d2e6fa94b6551f8 (diff)
loplugin:virtualdead in vcl
Change-Id: I54cacce6d843f41f220ac5350868bd6d70dbc6b4 Reviewed-on: https://gerrit.libreoffice.org/79585 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svtools')
-rw-r--r--svtools/inc/table/tablecontrol.hxx2
-rw-r--r--svtools/source/table/tablecontrol.cxx12
2 files changed, 0 insertions, 14 deletions
diff --git a/svtools/inc/table/tablecontrol.hxx b/svtools/inc/table/tablecontrol.hxx
index 2b8b88de90b6..41b1491af34c 100644
--- a/svtools/inc/table/tablecontrol.hxx
+++ b/svtools/inc/table/tablecontrol.hxx
@@ -146,9 +146,7 @@ namespace svt { namespace table
virtual tools::Rectangle GetFieldCharacterBounds(sal_Int32 _nRow,sal_Int32 _nColumnPos,sal_Int32 nIndex) override;
virtual sal_Int32 GetFieldIndexAtPoint(sal_Int32 _nRow,sal_Int32 _nColumnPos,const Point& _rPoint) override;
virtual void FillAccessibleStateSetForCell( ::utl::AccessibleStateSetHelper& _rStateSet, sal_Int32 _nRow, sal_uInt16 _nColumnPos ) const override;
- virtual OUString GetRowDescription( sal_Int32 _nRow ) const override;
virtual OUString GetRowName(sal_Int32 _nIndex) const override;
- virtual OUString GetColumnDescription( sal_uInt16 _nColumnPos ) const override;
virtual OUString GetColumnName( sal_Int32 _nIndex ) const override;
virtual bool HasRowHeader() override;
virtual bool HasColHeader() override;
diff --git a/svtools/source/table/tablecontrol.cxx b/svtools/source/table/tablecontrol.cxx
index 4f36256ff6cf..175d711d4704 100644
--- a/svtools/source/table/tablecontrol.cxx
+++ b/svtools/source/table/tablecontrol.cxx
@@ -379,12 +379,6 @@ namespace svt { namespace table
}
- OUString TableControl::GetRowDescription( sal_Int32) const
- {
- return "row description";
- }
-
-
OUString TableControl::GetRowName( sal_Int32 _nIndex) const
{
OUString sRowName;
@@ -393,12 +387,6 @@ namespace svt { namespace table
}
- OUString TableControl::GetColumnDescription( sal_uInt16) const
- {
- return "col description";
- }
-
-
OUString TableControl::GetColumnName( sal_Int32 _nIndex) const
{
return GetModel()->getColumnModel(_nIndex)->getName();