summaryrefslogtreecommitdiff
path: root/slideshow/source/engine/animationnodes/basenode.hxx
diff options
context:
space:
mode:
authorAndre Fischer <af@openoffice.org>2009-03-04 13:41:44 +0000
committerAndre Fischer <af@openoffice.org>2009-03-04 13:41:44 +0000
commit268c5a727b274916e0a0cc4bd61c3ed892a0b224 (patch)
tree4f359625494b5bcb69b6555564a2af07b313819c /slideshow/source/engine/animationnodes/basenode.hxx
parentdc300a3643d1424bda0fba622abc2c467446c085 (diff)
#i48179# Introduced EffectRewinder class that replays main sequence effects on current or previous slide.
Diffstat (limited to 'slideshow/source/engine/animationnodes/basenode.hxx')
-rw-r--r--slideshow/source/engine/animationnodes/basenode.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/slideshow/source/engine/animationnodes/basenode.hxx b/slideshow/source/engine/animationnodes/basenode.hxx
index 68ec92f0fea7..3a0b25e7ea94 100644
--- a/slideshow/source/engine/animationnodes/basenode.hxx
+++ b/slideshow/source/engine/animationnodes/basenode.hxx
@@ -137,6 +137,8 @@ public:
// nop:
virtual void notifyDeactivating( const AnimationNodeSharedPtr& rNotifier );
+ bool isMainSequenceRootNode() const { return mbIsMainSequenceRootNode; }
+
protected:
void scheduleDeactivationEvent( EventSharedPtr const& pEvent =
EventSharedPtr() );
@@ -144,8 +146,6 @@ protected:
SlideShowContext const& getContext() const { return maContext; }
::boost::shared_ptr<BaseNode> const& getSelf() const { return mpSelf; }
- bool isMainSequenceRootNode() const { return mbIsMainSequenceRootNode; }
-
bool checkValidNode() const {
ENSURE_OR_THROW( mpSelf, "no self ptr set!" );
bool const bRet = (meCurrState != INVALID);