summaryrefslogtreecommitdiff
path: root/xmloff/source/draw
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/draw')
-rw-r--r--xmloff/source/draw/animationimport.cxx2
-rw-r--r--xmloff/source/draw/ximpcustomshape.cxx2
2 files changed, 2 insertions, 2 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