From 7567a4c230625bbf922c52c861363f1cc4d6a1c7 Mon Sep 17 00:00:00 2001 From: Jochen Nitschke Date: Tue, 18 Oct 2016 12:56:25 +0200 Subject: '>>=' with rhs Any is a copy assignment replace '>>=' operator with '=' where return value is not checked and simplify. (note: switches lhs with rhs) Change-Id: I0d283e8786ea996ed80d7aa9d8a4ea930a3d52f8 Reviewed-on: https://gerrit.libreoffice.org/30004 Tested-by: Jenkins Reviewed-by: Noel Grandin --- sd/source/ui/animations/CustomAnimationDialog.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sd') diff --git a/sd/source/ui/animations/CustomAnimationDialog.cxx b/sd/source/ui/animations/CustomAnimationDialog.cxx index a0b826dd405b..2ba3459164ee 100644 --- a/sd/source/ui/animations/CustomAnimationDialog.cxx +++ b/sd/source/ui/animations/CustomAnimationDialog.cxx @@ -1495,7 +1495,7 @@ void CustomAnimationEffectTabPage::update( STLPropertySet* pSet ) } if( mpSet->getPropertyState( nHandleSoundURL ) != STLPropertyState::Ambiguous ) - mpSet->getPropertyValue( nHandleSoundURL ) >>= aOldSoundURL; + aOldSoundURL = mpSet->getPropertyValue( nHandleSoundURL ); if( aNewSoundURL != aOldSoundURL ) pSet->setPropertyValue( nHandleSoundURL, aNewSoundURL ); -- cgit