summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8
diff options
context:
space:
mode:
authorEilidh McAdam <eilidh@lanedo.com>2012-11-15 13:57:47 +0000
committerFridrich Strba <fridrich@documentfoundation.org>2012-12-04 10:58:04 +0000
commit67f42de08bb5d075d554cf5aa1a4c106fe9e4f5c (patch)
tree3974b6a624ca582d8e7fe6e9484d645225e86da9 /sw/source/filter/ww8
parentacef2d6cd075705eab015a4125badeca39078ef1 (diff)
Export finely dashed borders to docx.
Change-Id: I4a65f8e874abe406a9cd2d3a088ea52f0850088f Reviewed-on: https://gerrit.libreoffice.org/1124 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
Diffstat (limited to 'sw/source/filter/ww8')
-rw-r--r--sw/source/filter/ww8/docxattributeoutput.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx b/sw/source/filter/ww8/docxattributeoutput.cxx
index b55daeb3881c..b4dbee9b670d 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -1398,6 +1398,9 @@ static void impl_borderLine( FSHelperPtr pSerializer, sal_Int32 elementToken, co
case table::BorderLineStyle::INSET:
pVal = ( sal_Char* )"inset";
break;
+ case table::BorderLineStyle::FINE_DASHED:
+ pVal = ( sal_Char* )"dashSmallGap";
+ break;
case table::BorderLineStyle::NONE:
default:
break;