xmloff/source/chart/SchXMLPlotAreaContext.cxx | 7 +++++++ 1 file changed, 7 insertions(+)
New commits: commit 9a1860a28e2e183b67338a47f8cb37d4e896cc42 Author: Markus Mohrhard <[email protected]> Date: Mon Mar 4 12:53:01 2013 +0100 another fix for error bar import, related fdo#60083 Change-Id: I843a597702cb0cb66d8696c277666e1605091c09 Reviewed-on: https://gerrit.libreoffice.org/2560 Reviewed-by: Eike Rathke <[email protected]> Tested-by: Eike Rathke <[email protected]> diff --git a/xmloff/source/chart/SchXMLPlotAreaContext.cxx b/xmloff/source/chart/SchXMLPlotAreaContext.cxx index 2218931..0b9b205 100644 --- a/xmloff/source/chart/SchXMLPlotAreaContext.cxx +++ b/xmloff/source/chart/SchXMLPlotAreaContext.cxx @@ -1110,6 +1110,13 @@ void SetErrorBarPropertiesFromStyleName( const OUString& aStyleName, uno::Refere aAny >>= aNegRange; } + aAny = SchXMLTools::getPropertyFromContext("Weight", + pSeriesStyleContext, pStylesCtxt); + if( aAny.hasValue() ) + { + xBarProp->setPropertyValue("Weight", aAny); + } + aAny = SchXMLTools::getPropertyFromContext("PercentageError", pSeriesStyleContext, pStylesCtxt); if( aAny.hasValue() && aBarStyle == com::sun::star::chart::ErrorBarStyle::RELATIVE ) _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
