summaryrefslogtreecommitdiffstats
path: root/editeng
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-09-02 16:00:28 +0100
committerMichael Stahl <Michael.Stahl@cib.de>2019-09-03 10:38:44 +0200
commit8945724054c47afa429c30a15eec89d9e70a734c (patch)
tree6a71a0eef5d1c4b4f6688703a0df7efa33fae05b /editeng
parentResolves: tdf#126042 measure text width with the bold font it will render with (diff)
downloadcore-8945724054c47afa429c30a15eec89d9e70a734c.tar.gz
core-8945724054c47afa429c30a15eec89d9e70a734c.zip
assert on selecting text from end to start in shape with a11y enabled
Change-Id: I0a135236cf5e5f291b6289cc76228290a6f77e98 Reviewed-on: https://gerrit.libreoffice.org/78408 Tested-by: Jenkins Reviewed-by: Michael Stahl <Michael.Stahl@cib.de>
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/accessibility/AccessibleEditableTextPara.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/accessibility/AccessibleEditableTextPara.cxx b/editeng/source/accessibility/AccessibleEditableTextPara.cxx
index 7914e65383a5..1055136a3fec 100644
--- a/editeng/source/accessibility/AccessibleEditableTextPara.cxx
+++ b/editeng/source/accessibility/AccessibleEditableTextPara.cxx
@@ -2043,7 +2043,7 @@ namespace accessibility
if( nIndex <= aBoundary.endPos )
{
nextWord = aBoundary.endPos;
- if( sText[nextWord] == u' ' ) nextWord++;
+ if (nextWord < sText.getLength() && sText[nextWord] == u' ') nextWord++;
bWord = implGetWordBoundary( sText, aBoundary, nextWord );
}