diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-07-25 23:03:17 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-07-25 23:04:57 -0400 |
commit | fed7294029f07ff407765b568266084d9e8d365c (patch) | |
tree | d256cfba7350185fc76e4c95f9c76f438d803b1c /xmloff | |
parent | f350a71df9ca631c21cf6d2c981ddc717737c76f (diff) |
Simplify.
Change-Id: Id7826839a6177532bb4c3885e798ac5feb95eaca
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/chart/SchXMLExport.cxx | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/xmloff/source/chart/SchXMLExport.cxx b/xmloff/source/chart/SchXMLExport.cxx index 84958d8f8c55..9652641c0078 100644 --- a/xmloff/source/chart/SchXMLExport.cxx +++ b/xmloff/source/chart/SchXMLExport.cxx @@ -3301,11 +3301,8 @@ void SchXMLExportHelper_Impl::exportDataPoints( Sequence< sal_Int32 > aDataPointSeq; if( xSeriesProperties.is()) { - Any aAny = xSeriesProperties->getPropertyValue( - OUString( "AttributedDataPoints" )); - aAny >>= aDataPointSeq; - xSeriesProperties->getPropertyValue( - OUString( "VaryColorsByPoint" )) >>= bVaryColorsByPoint; + xSeriesProperties->getPropertyValue("AttributedDataPoints") >>= aDataPointSeq; + xSeriesProperties->getPropertyValue("VaryColorsByPoint") >>= bVaryColorsByPoint; } sal_Int32 nSize = aDataPointSeq.getLength(); |