summaryrefslogtreecommitdiff
path: root/slideshow/source/engine/animationnodes
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-10-19 10:24:57 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-10-20 06:12:24 +0000
commit40fc2c1a0d2ebdf47131651045107c9d5abb850d (patch)
tree66a2d4c7220dfd47b09984892a8a08a7e5ab5fea /slideshow/source/engine/animationnodes
parente7324c5705eaa38a2c9aa0636f01a73f033ba4d6 (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')
-rw-r--r--slideshow/source/engine/animationnodes/animationsetnode.cxx9
-rw-r--r--slideshow/source/engine/animationnodes/animationsetnode.hxx1
2 files changed, 2 insertions, 8 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 )) {
diff --git a/slideshow/source/engine/animationnodes/animationsetnode.hxx b/slideshow/source/engine/animationnodes/animationsetnode.hxx
index ee63b42d9132..9c39377470b1 100644
--- a/slideshow/source/engine/animationnodes/animationsetnode.hxx
+++ b/slideshow/source/engine/animationnodes/animationsetnode.hxx
@@ -39,7 +39,6 @@ public:
private:
virtual AnimationActivitySharedPtr createActivity() const override;
- void implScheduleDeactivationEvent();
};
} // namespace internal