diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-09-26 08:17:45 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-09-26 20:13:30 +0200 |
commit | 250c2ec78b9218a4d42f1fc6cdb12b15687d6eeb (patch) | |
tree | a5b3b64983515f412e5994e7baa33674e8cf8b7c /accessibility | |
parent | b56a4eaf5eb856c36d3539dc7d2e6fa94b6551f8 (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 'accessibility')
-rw-r--r-- | accessibility/source/extended/AccessibleGridControlTable.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/accessibility/source/extended/AccessibleGridControlTable.cxx b/accessibility/source/extended/AccessibleGridControlTable.cxx index dabafb4b719e..93df16335d91 100644 --- a/accessibility/source/extended/AccessibleGridControlTable.cxx +++ b/accessibility/source/extended/AccessibleGridControlTable.cxx @@ -111,7 +111,7 @@ OUString SAL_CALL AccessibleGridControlTable::getAccessibleRowDescription( sal_I ensureIsAlive(); ensureIsValidRow( nRow ); - return m_aTable.GetRowDescription( nRow ); + return "row description"; } OUString SAL_CALL AccessibleGridControlTable::getAccessibleColumnDescription( sal_Int32 nColumn ) @@ -120,7 +120,7 @@ OUString SAL_CALL AccessibleGridControlTable::getAccessibleColumnDescription( sa ensureIsAlive(); ensureIsValidColumn( nColumn ); - return m_aTable.GetColumnDescription( static_cast<sal_uInt16>(nColumn) ); + return "col description"; } Reference< XAccessibleTable > SAL_CALL AccessibleGridControlTable::getAccessibleRowHeaders() |