diff options
author | Adam Kovacs <christo161@gmail.com> | 2018-09-13 04:04:41 -0400 |
---|---|---|
committer | László Németh <nemeth@numbertext.org> | 2018-09-14 08:06:39 +0200 |
commit | 761308edb65a6cf44ef84cebc387e77af8b70f83 (patch) | |
tree | 1d9cbf1d5353cdd1f239e183fe6d3d6d58aa0403 /include/oox/export | |
parent | 4464f851a34fb000673e54a3f7d6395682d53003 (diff) |
tdf#108064 OOXML export: fixing linestyle export in charts
getLineDash function copy paste from ChartLinePanel.cxx.
We query the actual linedash value associated to the LineDashName
of the chart line via DashTable service.
Thanks for the guidance of László Németh!
Change-Id: I565fc968ce009803f9872da1f01dd56cfe07ddb3
Reviewed-on: https://gerrit.libreoffice.org/60424
Reviewed-by: László Németh <nemeth@numbertext.org>
Tested-by: László Németh <nemeth@numbertext.org>
Diffstat (limited to 'include/oox/export')
-rw-r--r-- | include/oox/export/drawingml.hxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/oox/export/drawingml.hxx b/include/oox/export/drawingml.hxx index 449e77da78e1..393752f78df6 100644 --- a/include/oox/export/drawingml.hxx +++ b/include/oox/export/drawingml.hxx @@ -81,6 +81,9 @@ namespace io { namespace uno { class XInterface; } +namespace frame { + class XModel; +} }}} struct EscherConnectorListEntry; @@ -200,7 +203,8 @@ public: void WriteSrcRectXGraphic(css::uno::Reference<css::beans::XPropertySet> const & rxPropertySet, css::uno::Reference<css::graphic::XGraphic> const & rxGraphic); - void WriteOutline( const css::uno::Reference< css::beans::XPropertySet >& rXPropSet ); + void WriteOutline( const css::uno::Reference< css::beans::XPropertySet >& rXPropSet, + css::uno::Reference< css::frame::XModel> const & xModel = nullptr ); void WriteXGraphicStretch(css::uno::Reference<css::beans::XPropertySet> const & rXPropSet, css::uno::Reference<css::graphic::XGraphic> const & rxGraphic); |