diff options
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/unodraw/unoshap4.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/unodraw/unoshap4.cxx b/svx/source/unodraw/unoshap4.cxx index 7a3ec38c8ca0..c806e75e27e2 100644 --- a/svx/source/unodraw/unoshap4.cxx +++ b/svx/source/unodraw/unoshap4.cxx @@ -691,7 +691,7 @@ bool SvxPluginShape::getPropertyValueImpl( const OUString& rName, const SfxItemP uno::Reference < beans::XPropertySet > xSet( static_cast<SdrOle2Obj*>(mpObj.get())->GetObjRef()->getComponent(), uno::UNO_QUERY ); if( xSet.is() ) { - rValue <<= xSet->getPropertyValue( rName ); + rValue = xSet->getPropertyValue( rName ); } } return true; @@ -768,7 +768,7 @@ bool SvxFrameShape::getPropertyValueImpl(const OUString& rName, const SfxItemPro uno::Reference < beans::XPropertySet > xSet( static_cast<SdrOle2Obj*>(mpObj.get())->GetObjRef()->getComponent(), uno::UNO_QUERY ); if( xSet.is() ) { - rValue <<= xSet->getPropertyValue( rName ); + rValue = xSet->getPropertyValue( rName ); } } return true; |