diff options
author | Arnaud Versini <Arnaud.Versini@libreoffice.org> | 2017-11-12 18:40:19 +0100 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-11-13 07:12:38 +0100 |
commit | 99872adcfbcee7bb2e6b2f35c05cb34bb8be76ee (patch) | |
tree | c643bbd2e6dec95cfd6a44372d769a3a6ce38d77 /editeng | |
parent | c8c5072a2f20d58807c233a1b62ded406931db78 (diff) |
Remove OAccessibleTextHelper::getCharacter and getTextRange
Change-Id: Ib32e3ca6ba55ab99820a54023041247cea96ab0c
Reviewed-on: https://gerrit.libreoffice.org/44652
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/accessibility/AccessibleEditableTextPara.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editeng/source/accessibility/AccessibleEditableTextPara.cxx b/editeng/source/accessibility/AccessibleEditableTextPara.cxx index a423246e4069..aa1b476356cb 100644 --- a/editeng/source/accessibility/AccessibleEditableTextPara.cxx +++ b/editeng/source/accessibility/AccessibleEditableTextPara.cxx @@ -1191,7 +1191,7 @@ namespace accessibility DBG_ASSERT(GetParagraphIndex() >= 0 && GetParagraphIndex() <= USHRT_MAX, "AccessibleEditableTextPara::getCharacter: index value overflow"); - return OCommonAccessibleText::getCharacter( nIndex ); + return OCommonAccessibleText::implGetCharacter( implGetText(), nIndex ); } uno::Sequence< beans::PropertyValue > SAL_CALL AccessibleEditableTextPara::getCharacterAttributes( sal_Int32 nIndex, const css::uno::Sequence< OUString >& rRequestedAttributes ) @@ -1463,7 +1463,7 @@ namespace accessibility DBG_ASSERT(GetParagraphIndex() >= 0 && GetParagraphIndex() <= USHRT_MAX, "AccessibleEditableTextPara::getTextRange: paragraph index value overflow"); - return OCommonAccessibleText::getTextRange(nStartIndex, nEndIndex); + return OCommonAccessibleText::implGetTextRange(implGetText(), nStartIndex, nEndIndex); } void AccessibleEditableTextPara::_correctValues( uno::Sequence< PropertyValue >& rValues) |