diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-07-29 15:11:59 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-07-29 15:11:59 +0200 |
commit | 3ee8bc8215103d3561e80283cd201cca1dc8335d (patch) | |
tree | 1a39b599b3ef6c3dd2c31dd27326a356188ddad1 /xmloff | |
parent | edffb444c07f4a928506436a5b50de3fa0ea4bf3 (diff) |
Fix previous commit
Change-Id: Ia6437852a5ecd208510af20915bc982d1014458d
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/chart/SchXMLExport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/chart/SchXMLExport.cxx b/xmloff/source/chart/SchXMLExport.cxx index ede679357c14..14ce0ec9e227 100644 --- a/xmloff/source/chart/SchXMLExport.cxx +++ b/xmloff/source/chart/SchXMLExport.cxx @@ -3076,7 +3076,7 @@ void SchXMLExportHelper_Impl::exportErrorBar( const Reference<beans::XPropertySe { Any aAny; - aAny = xSeriesProp->getPropertyValue( bYError ? "ErrorBarY" : "ErrorBarX" ); + aAny = xSeriesProp->getPropertyValue( bYError ? OUString("ErrorBarY") : OUString("ErrorBarX") ); aAny >>= xErrorBarProp; if ( xErrorBarProp.is() ) |