diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-07-30 17:59:00 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-07-31 13:01:28 +0200 |
commit | b4dc9062e167b0d786d209348f4ca996f8b8fd50 (patch) | |
tree | 1f6a200f372ed868c501ab5447e6d9af059f30bb /animations | |
parent | 2925275a63ded4e8a48db4d22b1809112ccfdb6f (diff) |
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 <sbergman@redhat.com>
Diffstat (limited to 'animations')
-rw-r--r-- | animations/source/animcore/animcore.cxx | 22 |
1 files changed, 11 insertions, 11 deletions
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<OUString> getSupportedServiceNames_PAR() static OUString getImplementationName_PAR() { - return OUString( "animcore::ParallelTimeContainer" ); + return "animcore::ParallelTimeContainer"; } static Sequence<OUString> getSupportedServiceNames_SEQ() @@ -508,7 +508,7 @@ static Sequence<OUString> getSupportedServiceNames_SEQ() static OUString getImplementationName_SEQ() { - return OUString( "animcore::SequenceTimeContainer" ); + return "animcore::SequenceTimeContainer"; } static Sequence<OUString> getSupportedServiceNames_ITERATE() @@ -518,7 +518,7 @@ static Sequence<OUString> getSupportedServiceNames_ITERATE() static OUString getImplementationName_ITERATE() { - return OUString( "animcore::IterateContainer" ); + return "animcore::IterateContainer"; } static Sequence<OUString> getSupportedServiceNames_ANIMATE() @@ -528,7 +528,7 @@ static Sequence<OUString> getSupportedServiceNames_ANIMATE() static OUString getImplementationName_ANIMATE() { - return OUString( "animcore::Animate" ); + return "animcore::Animate"; } static Sequence<OUString> getSupportedServiceNames_SET() @@ -538,7 +538,7 @@ static Sequence<OUString> getSupportedServiceNames_SET() static OUString getImplementationName_SET() { - return OUString( "animcore::AnimateSet" ); + return "animcore::AnimateSet"; } static Sequence<OUString> getSupportedServiceNames_ANIMATECOLOR() @@ -548,7 +548,7 @@ static Sequence<OUString> getSupportedServiceNames_ANIMATECOLOR() static OUString getImplementationName_ANIMATECOLOR() { - return OUString( "animcore::AnimateColor" ); + return "animcore::AnimateColor"; } static Sequence<OUString> getSupportedServiceNames_ANIMATEMOTION() @@ -558,7 +558,7 @@ static Sequence<OUString> getSupportedServiceNames_ANIMATEMOTION() static OUString getImplementationName_ANIMATEMOTION() { - return OUString( "animcore::AnimateMotion" ); + return "animcore::AnimateMotion"; } static Sequence<OUString> getSupportedServiceNames_ANIMATETRANSFORM() @@ -568,7 +568,7 @@ static Sequence<OUString> getSupportedServiceNames_ANIMATETRANSFORM() static OUString getImplementationName_ANIMATETRANSFORM() { - return OUString( "animcore::AnimateTransform" ); + return "animcore::AnimateTransform"; } static Sequence<OUString> getSupportedServiceNames_TRANSITIONFILTER() @@ -578,7 +578,7 @@ static Sequence<OUString> getSupportedServiceNames_TRANSITIONFILTER() static OUString getImplementationName_TRANSITIONFILTER() { - return OUString( "animcore::TransitionFilter" ); + return "animcore::TransitionFilter"; } static Sequence<OUString> getSupportedServiceNames_AUDIO() @@ -588,7 +588,7 @@ static Sequence<OUString> getSupportedServiceNames_AUDIO() static OUString getImplementationName_AUDIO() { - return OUString( "animcore::Audio" ); + return "animcore::Audio"; } static Sequence<OUString> getSupportedServiceNames_COMMAND() @@ -598,7 +598,7 @@ static Sequence<OUString> getSupportedServiceNames_COMMAND() static OUString getImplementationName_COMMAND() { - return OUString( "animcore::Command" ); + return "animcore::Command"; } // XInterface |