summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorJochen Nitschke <j.nitschke+logerrit@ok.de>2016-10-16 09:40:42 +0200
committerJochen Nitschke <j.nitschke+logerrit@ok.de>2016-10-17 15:39:13 +0000
commit9ac8a57e52a25870d497241c64bff3da0272cf4d (patch)
tree28841f59f47f03b3cba8a42c3249b299c498c2cd /xmloff
parenta8cfb651ac0d2669d5780b707bfb1efb43f0f34c (diff)
replace <<= with assign for <<= with rhs Any
makeAny and Any ctor return an Any Change-Id: Iaa361bc315d785f80153acf1009bf47d109728ec Reviewed-on: https://gerrit.libreoffice.org/29914 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Jochen Nitschke <j.nitschke+logerrit@ok.de>
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/chart/SchXMLPlotAreaContext.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/chart/SchXMLPlotAreaContext.cxx b/xmloff/source/chart/SchXMLPlotAreaContext.cxx
index a0d2e092727a..fe33c1bc4ef9 100644
--- a/xmloff/source/chart/SchXMLPlotAreaContext.cxx
+++ b/xmloff/source/chart/SchXMLPlotAreaContext.cxx
@@ -373,7 +373,7 @@ void SchXMLPlotAreaContext::StartElement( const uno::Reference< xml::sax::XAttri
{
if( maChartTypeServiceName == "com.sun.star.chart2.AreaChartType" || maChartTypeServiceName == "com.sun.star.chart2.LineChartType" )
{
- aDeepProperty <<= uno::makeAny( true );
+ aDeepProperty = uno::makeAny( true );
}
}
}