diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-02-03 18:49:56 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2012-02-07 22:00:22 +0100 |
commit | e078868c290014ddc5eac4a982349ac75557739e (patch) | |
tree | f0cb1773272aaa2c92ec786e769eae54a6d30748 | |
parent | 7fcb1bb88d0809c64ac4be2aa95a96a883e55af8 (diff) |
fdo#45115: SwXTextTable: fix setting borders
This plus e549f52f16c4a519ed3eddb9c66c19bacc247590 fixes the problem.
Signed-off-by: Eike Rathke <erack@redhat.com>
-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 898adef141..77cf0af85f 100644 --- a/sw/source/core/unocore/unotbl.cxx +++ b/sw/source/core/unocore/unotbl.cxx @@ -138,7 +138,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 ) ); |