diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-01-13 19:47:14 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-01-17 11:33:11 -0500 |
commit | 6064f984cd05330e50f4ca3d00ff6300ee744fd0 (patch) | |
tree | 865b5f7a6eafad132281aa827f99d68102ebb1bb /sc | |
parent | 5cdb7a5934877f9820429f9b8ff4c7814f0fa65e (diff) |
Excel's hair line is not "fine dashed". It's a solid line.
Excel may display this line as fine dots on screen, but on paper this is
a ultra thin solid line. We need to go by what gets printed on paper.
Change-Id: I6640706ff8a16ad26330f8f609a429fb7f14faad
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/excel/xistyle.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/excel/xistyle.cxx b/sc/source/filter/excel/xistyle.cxx index db38fb61be37..54dade266706 100644 --- a/sc/source/filter/excel/xistyle.cxx +++ b/sc/source/filter/excel/xistyle.cxx @@ -904,7 +904,7 @@ bool lclConvertBorderLine( ::editeng::SvxBorderLine& rLine, const XclImpPalette& { EXC_BORDER_THIN, table::BorderLineStyle::DOTTED }, // 4 = dotted { EXC_BORDER_THICK, table::BorderLineStyle::SOLID }, // 5 = thick { EXC_BORDER_THIN, table::BorderLineStyle::DOUBLE }, // 6 = double - { EXC_BORDER_HAIR, table::BorderLineStyle::FINE_DASHED }, // 7 = hair + { EXC_BORDER_HAIR, table::BorderLineStyle::SOLID }, // 7 = hair { EXC_BORDER_MEDIUM, table::BorderLineStyle::DASHED }, // 8 = med dash { EXC_BORDER_THIN, table::BorderLineStyle::SOLID }, // 9 = thin dashdot { EXC_BORDER_MEDIUM, table::BorderLineStyle::SOLID }, // A = med dashdot |