diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-04-25 20:09:47 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-04-27 11:46:44 +0200 |
commit | f5fb361df94449850a83be3b412f68e1f9b949c5 (patch) | |
tree | 35d0f5f179044f0810e087c89186e84c6475c644 | |
parent | 46a719d893b92f41a0bdbd7bff660d228c2bd714 (diff) |
fdo#60967: fix deletion of paragraph following table
Surprisingly MovePara(fnParaCurr, fnParaEnd) actually moves to the end
of the next paragraph if the current one is empty.
Change-Id: I780bf663b19044252f1d4532d5467c3a599c8a49
-rw-r--r-- | sw/source/core/uibase/wrtsh/delete.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sw/source/core/uibase/wrtsh/delete.cxx b/sw/source/core/uibase/wrtsh/delete.cxx index 7d95390ce8e9..e18c453cfde7 100644 --- a/sw/source/core/uibase/wrtsh/delete.cxx +++ b/sw/source/core/uibase/wrtsh/delete.cxx @@ -462,7 +462,10 @@ long SwWrtShell::DelToEndOfSentence() if (SwCrsrShell::Right(1,CRSR_SKIP_CHARS)) { SetMark(); - SwCrsrShell::MovePara(fnParaCurr, fnParaEnd); + if (!IsEndPara()) // can only be at the end if it's empty + { // for an empty paragraph this would actually select the _next_ + SwCrsrShell::MovePara(fnParaCurr, fnParaEnd); + } if (!IsEndOfDoc()) // do not delete last paragraph in body text { nRet = DelFullPara() ? 1 : 0; |