summaryrefslogtreecommitdiff
path: root/slideshow/source/engine/animationnodes
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-06 09:37:21 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-06 09:37:21 +0100
commit69b81b64f8ecd9ea627ec0efe894808e527d98fc (patch)
tree830a9c8c0fcd85dc1054ebd20ff1208d74e67ab9 /slideshow/source/engine/animationnodes
parentb8f0442fcab93d9f28bee3d216a244cc91288dab (diff)
loplugin:stringconstant: elide explicit ctor usage (automatic rewrite)
Change-Id: I23de1fa2f8e6c0cf6281b32eab179e131aa98056
Diffstat (limited to 'slideshow/source/engine/animationnodes')
-rw-r--r--slideshow/source/engine/animationnodes/animationtransformnode.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/slideshow/source/engine/animationnodes/animationtransformnode.cxx b/slideshow/source/engine/animationnodes/animationtransformnode.cxx
index b9a99c3ae184..ee451ea2cb89 100644
--- a/slideshow/source/engine/animationnodes/animationtransformnode.cxx
+++ b/slideshow/source/engine/animationnodes/animationtransformnode.cxx
@@ -66,7 +66,7 @@ AnimationActivitySharedPtr AnimationTransformNode::createActivity() const
return ActivitiesFactory::createAnimateActivity(
aParms,
AnimationFactory::createNumberPropertyAnimation(
- OUString("Rotate"),
+ "Rotate",
rShape,
getContext().mpSubsettableShapeManager,
getSlideSize() ),
@@ -76,7 +76,7 @@ AnimationActivitySharedPtr AnimationTransformNode::createActivity() const
return ActivitiesFactory::createAnimateActivity(
aParms,
AnimationFactory::createNumberPropertyAnimation(
- OUString("SkewX"),
+ "SkewX",
rShape,
getContext().mpSubsettableShapeManager,
getSlideSize() ),
@@ -86,7 +86,7 @@ AnimationActivitySharedPtr AnimationTransformNode::createActivity() const
return ActivitiesFactory::createAnimateActivity(
aParms,
AnimationFactory::createNumberPropertyAnimation(
- OUString("SkewY"),
+ "SkewY",
rShape,
getContext().mpSubsettableShapeManager,
getSlideSize() ),