summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorMichael Stahl <Michael.Stahl@cib.de>2018-12-20 15:00:41 +0100
committerMichael Stahl <Michael.Stahl@cib.de>2018-12-21 22:15:17 +0100
commit6a6a68738114a796e36047f41797da0cacf6dc54 (patch)
treea1e38b65c09d80cc4dd6b26ee34ed4ea9757e04d /sw
parent80cedb5dcb6a7dd6c01349b93fab49ecee5f6594 (diff)
sw_redlinehide: SwTextNode::GetExpandText() HideDeletions
Always enable this when the layout hides redlines (not sure why it wasn't done like this before...). Change-Id: Icddf8a23352565c0091a79eb64628054d0028928 Reviewed-on: https://gerrit.libreoffice.org/65526 Tested-by: Jenkins Reviewed-by: Michael Stahl <Michael.Stahl@cib.de>
Diffstat (limited to 'sw')
-rw-r--r--sw/source/core/txtnode/ndtxt.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/sw/source/core/txtnode/ndtxt.cxx b/sw/source/core/txtnode/ndtxt.cxx
index 7c2f143a080f..3b15a3318180 100644
--- a/sw/source/core/txtnode/ndtxt.cxx
+++ b/sw/source/core/txtnode/ndtxt.cxx
@@ -3399,6 +3399,10 @@ OUString SwTextNode::GetExpandText(SwRootFrame const*const pLayout,
{
ExpandMode eMode = ExpandMode::ExpandFields | eAdditionalMode;
+ if (pLayout && pLayout->IsHideRedlines())
+ {
+ eMode |= ExpandMode::HideDeletions;
+ }
ModelToViewHelper aConversionMap(*this, pLayout, eMode);
const OUString aExpandText = aConversionMap.getViewText();