From b4dc9062e167b0d786d209348f4ca996f8b8fd50 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 30 Jul 2019 17:59:00 +0200 Subject: Improved loplugin:stringconstant (now that GCC 7 supports it): animations Change-Id: I05d48f4e504eae76768d0606091ecdb58e67d8bd Reviewed-on: https://gerrit.libreoffice.org/76699 Tested-by: Jenkins Reviewed-by: Stephan Bergmann --- animations/source/animcore/animcore.cxx | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'animations/source') diff --git a/animations/source/animcore/animcore.cxx b/animations/source/animcore/animcore.cxx index b5a9a174bd7b..9078b2fe4649 100644 --- a/animations/source/animcore/animcore.cxx +++ b/animations/source/animcore/animcore.cxx @@ -498,7 +498,7 @@ static Sequence getSupportedServiceNames_PAR() static OUString getImplementationName_PAR() { - return OUString( "animcore::ParallelTimeContainer" ); + return "animcore::ParallelTimeContainer"; } static Sequence getSupportedServiceNames_SEQ() @@ -508,7 +508,7 @@ static Sequence getSupportedServiceNames_SEQ() static OUString getImplementationName_SEQ() { - return OUString( "animcore::SequenceTimeContainer" ); + return "animcore::SequenceTimeContainer"; } static Sequence getSupportedServiceNames_ITERATE() @@ -518,7 +518,7 @@ static Sequence getSupportedServiceNames_ITERATE() static OUString getImplementationName_ITERATE() { - return OUString( "animcore::IterateContainer" ); + return "animcore::IterateContainer"; } static Sequence getSupportedServiceNames_ANIMATE() @@ -528,7 +528,7 @@ static Sequence getSupportedServiceNames_ANIMATE() static OUString getImplementationName_ANIMATE() { - return OUString( "animcore::Animate" ); + return "animcore::Animate"; } static Sequence getSupportedServiceNames_SET() @@ -538,7 +538,7 @@ static Sequence getSupportedServiceNames_SET() static OUString getImplementationName_SET() { - return OUString( "animcore::AnimateSet" ); + return "animcore::AnimateSet"; } static Sequence getSupportedServiceNames_ANIMATECOLOR() @@ -548,7 +548,7 @@ static Sequence getSupportedServiceNames_ANIMATECOLOR() static OUString getImplementationName_ANIMATECOLOR() { - return OUString( "animcore::AnimateColor" ); + return "animcore::AnimateColor"; } static Sequence getSupportedServiceNames_ANIMATEMOTION() @@ -558,7 +558,7 @@ static Sequence getSupportedServiceNames_ANIMATEMOTION() static OUString getImplementationName_ANIMATEMOTION() { - return OUString( "animcore::AnimateMotion" ); + return "animcore::AnimateMotion"; } static Sequence getSupportedServiceNames_ANIMATETRANSFORM() @@ -568,7 +568,7 @@ static Sequence getSupportedServiceNames_ANIMATETRANSFORM() static OUString getImplementationName_ANIMATETRANSFORM() { - return OUString( "animcore::AnimateTransform" ); + return "animcore::AnimateTransform"; } static Sequence getSupportedServiceNames_TRANSITIONFILTER() @@ -578,7 +578,7 @@ static Sequence getSupportedServiceNames_TRANSITIONFILTER() static OUString getImplementationName_TRANSITIONFILTER() { - return OUString( "animcore::TransitionFilter" ); + return "animcore::TransitionFilter"; } static Sequence getSupportedServiceNames_AUDIO() @@ -588,7 +588,7 @@ static Sequence getSupportedServiceNames_AUDIO() static OUString getImplementationName_AUDIO() { - return OUString( "animcore::Audio" ); + return "animcore::Audio"; } static Sequence getSupportedServiceNames_COMMAND() @@ -598,7 +598,7 @@ static Sequence getSupportedServiceNames_COMMAND() static OUString getImplementationName_COMMAND() { - return OUString( "animcore::Command" ); + return "animcore::Command"; } // XInterface -- cgit