summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorJochen Nitschke <j.nitschke+logerrit@ok.de>2016-10-16 20:08:47 +0200
committerJochen Nitschke <j.nitschke+logerrit@ok.de>2016-10-18 19:16:44 +0000
commitd1ea6ecda68bf65b8d90e9ea17fa0a218a92b016 (patch)
tree941e1e5650db110768d2ace19c891fec4f78fc33 /xmloff
parent55bcb865ee09673af06652e507d08d13069eae86 (diff)
replace <<= with assign for <<= with rhs Any
found by deleting specialization of '<<=' template Change-Id: I253f15177ab20fd3ef9baf4158da8c662cb47e6c Reviewed-on: https://gerrit.libreoffice.org/29956 Reviewed-by: Jochen Nitschke <j.nitschke+logerrit@ok.de> Tested-by: Jochen Nitschke <j.nitschke+logerrit@ok.de>
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/draw/animationimport.cxx2
-rw-r--r--xmloff/source/draw/ximpcustomshape.cxx2
-rw-r--r--xmloff/source/style/xmlimppr.cxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/draw/animationimport.cxx b/xmloff/source/draw/animationimport.cxx
index 1f7e0f0bdb09..13e67c357b80 100644
--- a/xmloff/source/draw/animationimport.cxx
+++ b/xmloff/source/draw/animationimport.cxx
@@ -521,7 +521,7 @@ Any AnimationsImportHelperImpl::convertTiming( const OUString& rValue )
aEventTrigger = rValue.copy( 0, nPos );
// convert offset
- aEvent.Offset <<= convertTiming( rValue.copy( nPos + 1 ) );
+ aEvent.Offset = convertTiming( rValue.copy( nPos + 1 ) );
}
nPos = aEventTrigger.indexOf( (sal_Unicode)'.' );
diff --git a/xmloff/source/draw/ximpcustomshape.cxx b/xmloff/source/draw/ximpcustomshape.cxx
index 029a1ba3b878..fbb5822c919e 100644
--- a/xmloff/source/draw/ximpcustomshape.cxx
+++ b/xmloff/source/draw/ximpcustomshape.cxx
@@ -827,7 +827,7 @@ void GetAdjustmentValues( std::vector< css::beans::PropertyValue >& rDest,
css::drawing::EnhancedCustomShapeAdjustmentValue aAdj;
if ( aParameter.Type == css::drawing::EnhancedCustomShapeParameterType::NORMAL )
{
- aAdj.Value <<= aParameter.Value;
+ aAdj.Value = aParameter.Value;
aAdj.State = beans::PropertyState_DIRECT_VALUE;
}
else
diff --git a/xmloff/source/style/xmlimppr.cxx b/xmloff/source/style/xmlimppr.cxx
index ab4bfbe39a2e..9aa54202ffd0 100644
--- a/xmloff/source/style/xmlimppr.cxx
+++ b/xmloff/source/style/xmlimppr.cxx
@@ -350,7 +350,7 @@ void SvXMLImportPropertyMapper::FillPropertySequence(
pProps->Name = maPropMapper->GetEntryAPIName( nIdx );
if( !pProps->Name.isEmpty() )
{
- pProps->Value <<= rProp.maValue;
+ pProps->Value = rProp.maValue;
++pProps;
++nValueCount;
}