diff options
author | Justin Luth <justin_luth@sil.org> | 2014-11-08 19:37:22 +0300 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-11-11 16:40:31 +0000 |
commit | 817da76529aa39f641d76805d429b09681348811 (patch) | |
tree | 954fa14522aa2aec34d10392f0c00346cfdb0368 | |
parent | 2fc7a10dbf7f76046cd287c7e7695fc547d2fab3 (diff) |
fdo#85912 Delete surrounding text failing for input method calls regression.
When Apache OpenOffice code was merged in, a few lines were removed for
no apparent reason. This just adds the code back in, and resolves the bug.
See the comments in fdo#85912 for details about this bug. It is hard for
majority language users to reproduce since they don't use ibus/kmfl to
type their language's letters.
Change-Id: I3963ea0f0eeeab8c8006408a7e229beab1ccf9f6
Reviewed-on: https://gerrit.libreoffice.org/12311
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | sw/source/core/access/accpara.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sw/source/core/access/accpara.cxx b/sw/source/core/access/accpara.cxx index 892447a51f2a..5d6b7e3ef645 100644 --- a/sw/source/core/access/accpara.cxx +++ b/sw/source/core/access/accpara.cxx @@ -556,6 +556,9 @@ SwAccessibleParagraph::SwAccessibleParagraph( //Get the real heading level, Heading1 ~ Heading10 nHeadingLevel = GetRealHeadingLevel(); SetName( OUString() ); // set an empty accessibility name for paragraphs + + // If this object has the focus, then it is remembered by the map itself. + nOldCaretPos = GetCaretPos(); } SwAccessibleParagraph::~SwAccessibleParagraph() |