diff options
author | Ivan Timofeev <timofeev.i.s@gmail.com> | 2012-04-11 22:18:22 +0400 |
---|---|---|
committer | Ivan Timofeev <timofeev.i.s@gmail.com> | 2012-04-11 22:18:22 +0400 |
commit | 9c323a4bbe0f7dec33523e87e1c1010dd832d4bf (patch) | |
tree | f57f1815aa358aefe783443f4a429f472eb5b522 /xmloff | |
parent | a4cc4d3ec982ac61100b337125983afa0bb6fbc3 (diff) |
fix windows build
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 0d253d2e7c85..6632b47a49fe 100644 --- a/xmloff/source/chart/SchXMLExport.cxx +++ b/xmloff/source/chart/SchXMLExport.cxx @@ -3137,7 +3137,7 @@ void SchXMLExportHelper_Impl::exportErrorBar( const Reference<beans::XPropertySe { Any aAny; - aAny = xSeriesProp->getPropertyValue( bYError ? "ErrorBarY" : "ErrorBarX" ); + aAny = xSeriesProp->getPropertyValue( bYError ? rtl::OUString("ErrorBarY") : rtl::OUString("ErrorBarX") ); aAny >>= xErrorBarProp; if ( xErrorBarProp.is() ) |