diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-10-19 10:24:57 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-10-20 06:12:24 +0000 |
commit | 40fc2c1a0d2ebdf47131651045107c9d5abb850d (patch) | |
tree | 66a2d4c7220dfd47b09984892a8a08a7e5ab5fea /slideshow/source/engine/animationnodes/animationsetnode.cxx | |
parent | e7324c5705eaa38a2c9aa0636f01a73f033ba4d6 (diff) |
loplugin:expandablemethodds in sfx2..starmath
Change-Id: Ia4c411f5a9a68c2f344188ce6b6bc1815c89f993
Reviewed-on: https://gerrit.libreoffice.org/30055
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'slideshow/source/engine/animationnodes/animationsetnode.cxx')
-rw-r--r-- | slideshow/source/engine/animationnodes/animationsetnode.cxx | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/slideshow/source/engine/animationnodes/animationsetnode.cxx b/slideshow/source/engine/animationnodes/animationsetnode.cxx index 0e19b7fb8778..3770790c193e 100644 --- a/slideshow/source/engine/animationnodes/animationsetnode.cxx +++ b/slideshow/source/engine/animationnodes/animationsetnode.cxx @@ -30,11 +30,6 @@ using namespace com::sun::star; namespace slideshow { namespace internal { -void AnimationSetNode::implScheduleDeactivationEvent() -{ - scheduleDeactivationEvent(); -} - AnimationActivitySharedPtr AnimationSetNode::createActivity() const { ActivitiesFactory::CommonParameters aParms( fillCommonParameters() ); @@ -61,8 +56,8 @@ AnimationActivitySharedPtr AnimationSetNode::createActivity() const ENSURE_OR_THROW( pSelf, "cannot cast getSelf() to my type!" ); aParms.mpEndEvent = makeEvent( - [pSelf] () { pSelf->implScheduleDeactivationEvent(); }, - "AnimationSetNode::implScheduleDeactivationEvent"); + [pSelf] () { pSelf->scheduleDeactivationEvent(); }, + "AnimationSetNode::scheduleDeactivationEvent"); } switch (AnimationFactory::classifyAttributeName( attrName )) { |