sc/source/filter/excel/xestyle.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
New commits: commit d6d06b230bf923492c4a6ff42781cca25a28ef25 Author: Kohei Yoshida <kohei.yosh...@collabora.com> Date: Thu Feb 20 11:27:32 2014 -0500 fdo#75130: Export cell borders to xls and xlsx correctly. Change-Id: Ic629fb4852d2ada9724dfee7618e2436c0fa28a8 (cherry picked from commit 1c1f42fdbad774cae7c45a7f8d60b9af766dee0a) Reviewed-on: https://gerrit.libreoffice.org/8147 Tested-by: Markus Mohrhard <markus.mohrh...@googlemail.com> Reviewed-by: Markus Mohrhard <markus.mohrh...@googlemail.com> diff --git a/sc/source/filter/excel/xestyle.cxx b/sc/source/filter/excel/xestyle.cxx index 59603eb..f3ce557 100644 --- a/sc/source/filter/excel/xestyle.cxx +++ b/sc/source/filter/excel/xestyle.cxx @@ -1570,18 +1570,18 @@ void lclGetBorderLine( switch (pLine->GetBorderLineStyle()) { case table::BorderLineStyle::DASHED: + case table::BorderLineStyle::FINE_DASHED: rnXclLine = EXC_LINE_DASHED; break; case table::BorderLineStyle::DOTTED: rnXclLine = EXC_LINE_DOTTED; break; - case table::BorderLineStyle::FINE_DASHED: - rnXclLine = EXC_LINE_HAIR; - break; default: break; } } + else if (nOuterWidth >= EXC_BORDER_HAIR) + rnXclLine = EXC_LINE_HAIR; else rnXclLine = EXC_LINE_NONE; } @@ -1726,7 +1726,7 @@ static const char* ToLineStyle( sal_uInt8 nLineStyle ) case EXC_LINE_HAIR: return "hair"; case EXC_LINE_DOTTED: return "dotted"; case EXC_LINE_DASHED: return "dashed"; - case EXC_LINE_MEDIUMDASHED: return "mediumdashed"; + case EXC_LINE_MEDIUMDASHED: return "mediumDashed"; } return "*unknown*"; } _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits