summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2014-02-20 11:27:32 -0500
committerKohei Yoshida <kohei.yoshida@collabora.com>2014-02-20 11:30:21 -0500
commit1c1f42fdbad774cae7c45a7f8d60b9af766dee0a (patch)
tree2bd3e1cd6c9d5600dd9a0581813be0ddd19fbd72
parent6d5270dab5c8ea8bae1ac3462aa5f6768f7d2c8f (diff)
fdo#75130: Export cell borders to xls and xlsx correctly.
Change-Id: Ic629fb4852d2ada9724dfee7618e2436c0fa28a8
-rw-r--r--sc/source/filter/excel/xestyle.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/filter/excel/xestyle.cxx b/sc/source/filter/excel/xestyle.cxx
index f4f8ffce6792..c75322850d47 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*";
}