diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-02-03 18:49:56 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-02-03 22:02:18 +0100 |
commit | ef9881001e4ddfa6bfbe7d83f482393bb76d926a (patch) | |
tree | 7f1cf20a6e6b4e0ffdf213b44eb3345f46c059ad | |
parent | 9d0136679e441413b6945d2a40aa892b50ee19a8 (diff) |
fdo#45115: SwXTextTable: fix setting borders
This plus e549f52f16c4a519ed3eddb9c66c19bacc247590 fixes the problem.
-rw-r--r-- | sw/source/core/unocore/unotbl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/unocore/unotbl.cxx b/sw/source/core/unocore/unotbl.cxx index a928d15b3a62..952616037a20 100644 --- a/sw/source/core/unocore/unotbl.cxx +++ b/sw/source/core/unocore/unotbl.cxx @@ -136,7 +136,7 @@ sal_Bool lcl_LineToSvxLine(const table::BorderLine& rLine, SvxBorderLine& rSvxLi { rSvxLine.SetColor(Color(rLine.Color)); - rSvxLine.GuessLinesWidths( editeng::SvxBorderStyle(table::BorderLineStyle::SOLID), + rSvxLine.GuessLinesWidths( editeng::NO_STYLE, MM100_TO_TWIP( rLine.OuterLineWidth ), MM100_TO_TWIP( rLine.InnerLineWidth ), MM100_TO_TWIP( rLine.LineDistance ) ); |