diff options
author | Arnaud Versini <arnaud.versini@gmail.com> | 2017-07-08 14:41:48 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-10 09:53:45 +0200 |
commit | 2ed9a2b641682d8612b5404bd3978ed049aa0266 (patch) | |
tree | bd1b33ba8da5451f86744062d4b4964aab4cc993 /comphelper | |
parent | 19b34f615c04555f27978e2823ba735a9c9f882e (diff) |
Remove useless method OCommonAccessibleText::getText
Change-Id: I4ee2df05ffceaea9d22ec7e2f78dc6e13061b5ef
Reviewed-on: https://gerrit.libreoffice.org/39714
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/misc/accessibletexthelper.cxx | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/comphelper/source/misc/accessibletexthelper.cxx b/comphelper/source/misc/accessibletexthelper.cxx index 99f095bdeb83..279cb995e238 100644 --- a/comphelper/source/misc/accessibletexthelper.cxx +++ b/comphelper/source/misc/accessibletexthelper.cxx @@ -282,12 +282,6 @@ namespace comphelper } - OUString OCommonAccessibleText::getText() - { - return implGetText(); - } - - OUString OCommonAccessibleText::getTextRange( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) { OUString sText( implGetText() ); @@ -816,7 +810,7 @@ namespace comphelper { OExternalLockGuard aGuard( this ); - return OCommonAccessibleText::getText(); + return implGetText(); } |