summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Luth <justin_luth@sil.org>2017-01-13 20:58:02 +0300
committerJustin Luth <justin_luth@sil.org>2017-01-14 04:21:39 +0000
commit9e7526044c8fa6b006b0cb791d15f2476c96ebf2 (patch)
tree1f538bc2b01e510025c3a67bb772aeaae94d3337
parentec1afa55e8ed79dc290caff74aaca304a77c3b4f (diff)
tdf#105294 - only add spacing for the border being set
related to bug 41542 which now allows the space-to-contents value even if the border is not visible. For years, LO has been resetting the spacing to zero when a line is diabled. Setting all border distances here was a mistake that was never caught before, and the documents created because of this oversight will likely cause some grief to bug 41542. Change-Id: Id2708cf20600e29e97dc6c8d8b779894ad9c38d1 Reviewed-on: https://gerrit.libreoffice.org/33055 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Justin Luth <justin_luth@sil.org>
-rw-r--r--sw/source/core/edit/autofmt.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/edit/autofmt.cxx b/sw/source/core/edit/autofmt.cxx
index 7ed101347c70..42444ddbb0f1 100644
--- a/sw/source/core/edit/autofmt.cxx
+++ b/sw/source/core/edit/autofmt.cxx
@@ -584,7 +584,7 @@ bool SwAutoFormat::DoUnderline()
aSet.Put( SwParaConnectBorderItem( false ) );
SvxBoxItem aBox( RES_BOX );
aBox.SetLine( &aLine, SvxBoxItemLine::BOTTOM );
- aBox.SetAllDistances(42); // ~0,75 mm
+ aBox.SetDistance(42, SvxBoxItemLine::BOTTOM ); // ~0,75 mm
aSet.Put(aBox);
m_pDoc->getIDocumentContentOperations().InsertItemSet( m_aDelPam, aSet );