diff options
author | Arnaud Versini <Arnaud.Versini@libreoffice.org> | 2017-11-12 14:23:52 +0100 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-11-13 07:09:02 +0100 |
commit | 8d4a44d176fc7e80d6c5f13b1e73069967b9593b (patch) | |
tree | d84e75d33d6c2a157142450cb8fc3a0bacd6a55a /comphelper | |
parent | 102acb3675fed4e4e61a98722e279b9d8bc18ad2 (diff) |
Remove OCommonAccessibleText::getText and getCharacterCount.
No need to create helper for those methods.
Change-Id: I0505fe8141b1bad852b7f30aeb69628fb6a90071
Reviewed-on: https://gerrit.libreoffice.org/44649
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 | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/comphelper/source/misc/accessibletexthelper.cxx b/comphelper/source/misc/accessibletexthelper.cxx index 1dcf2f669eeb..38ad66679b1b 100644 --- a/comphelper/source/misc/accessibletexthelper.cxx +++ b/comphelper/source/misc/accessibletexthelper.cxx @@ -234,12 +234,6 @@ namespace comphelper } - sal_Int32 OCommonAccessibleText::getCharacterCount() - { - return implGetText().getLength(); - } - - OUString OCommonAccessibleText::getSelectedText() { OUString sText; @@ -774,14 +768,6 @@ namespace comphelper } - sal_Int32 OAccessibleTextHelper::getCharacterCount() - { - OExternalLockGuard aGuard( this ); - - return OCommonAccessibleText::getCharacterCount(); - } - - OUString OAccessibleTextHelper::getSelectedText() { OExternalLockGuard aGuard( this ); @@ -806,14 +792,6 @@ namespace comphelper } - OUString OAccessibleTextHelper::getText() - { - OExternalLockGuard aGuard( this ); - - return implGetText(); - } - - OUString OAccessibleTextHelper::getTextRange( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) { OExternalLockGuard aGuard( this ); |