From a238b1f8d304bf1e2ffb357937f3ec888ee8ac89 Mon Sep 17 00:00:00 2001 From: Chris Sherlock Date: Tue, 9 Feb 2016 18:16:42 +1100 Subject: Remove excess newlines A ridiculously fast way of doing this is: for i in $(pcregrep -l -M -r --include='.*[hc]xx$' \ --exclude-dir=workdir --exclude-dir=instdir '^ {3,}' .) do perl -0777 -i -pe 's/^ {3,}/ /gm' $i done Change-Id: Iebb93eccbee9e4fc5c4380474ba595858a27ac2c Reviewed-on: https://gerrit.libreoffice.org/22224 Tested-by: Jenkins Reviewed-by: Chris Sherlock --- slideshow/source/engine/effectrewinder.cxx | 28 ---------------------------- 1 file changed, 28 deletions(-) (limited to 'slideshow/source/engine/effectrewinder.cxx') diff --git a/slideshow/source/engine/effectrewinder.cxx b/slideshow/source/engine/effectrewinder.cxx index 6c55a1178253..9ac9898508b8 100644 --- a/slideshow/source/engine/effectrewinder.cxx +++ b/slideshow/source/engine/effectrewinder.cxx @@ -52,7 +52,6 @@ private: }; - class RewinderAnimationEventHandler : public AnimationEventHandler { public: @@ -66,7 +65,6 @@ private: }; - } // end of anonymous namespace @@ -91,8 +89,6 @@ EffectRewinder::EffectRewinder ( } - - void EffectRewinder::initialize() { // Add some event handlers so that we are informed when @@ -119,16 +115,12 @@ void EffectRewinder::initialize() } - - EffectRewinder::~EffectRewinder() { dispose(); } - - void EffectRewinder::dispose() { if (mpAsynchronousRewindEvent) @@ -157,8 +149,6 @@ void EffectRewinder::dispose() } - - void EffectRewinder::setRootAnimationNode ( const uno::Reference& xRootNode) { @@ -166,8 +156,6 @@ void EffectRewinder::setRootAnimationNode ( } - - bool EffectRewinder::rewind ( const ::boost::shared_ptr& rpPaintLock, const ::std::function& rSlideRewindFunctor, @@ -225,8 +213,6 @@ bool EffectRewinder::rewind ( } - - void EffectRewinder::skipAllMainSequenceEffects() { // Do not allow nested rewinds. @@ -249,8 +235,6 @@ void EffectRewinder::skipAllMainSequenceEffects() } - - sal_Int32 EffectRewinder::countMainSequenceEffects() { // Determine the number of main sequence effects. @@ -292,8 +276,6 @@ sal_Int32 EffectRewinder::countMainSequenceEffects() } - - void EffectRewinder::skipSingleMainSequenceEffects() { // This basically just starts the next effect and then skips over its @@ -305,8 +287,6 @@ void EffectRewinder::skipSingleMainSequenceEffects() } - - bool EffectRewinder::resetEffectCount() { mnMainSequenceEffectCount = 0; @@ -314,8 +294,6 @@ bool EffectRewinder::resetEffectCount() } - - bool EffectRewinder::notifyAnimationStart (const AnimationNodeSharedPtr& rpNode) { // This notification is only relevant for us when the rpNode belongs to @@ -349,8 +327,6 @@ bool EffectRewinder::notifyAnimationStart (const AnimationNodeSharedPtr& rpNode) } - - void EffectRewinder::asynchronousRewind ( sal_Int32 nEffectCount, const bool bRedisplayCurrentSlide, @@ -395,8 +371,6 @@ void EffectRewinder::asynchronousRewind ( } - - void EffectRewinder::asynchronousRewindToPreviousSlide ( const ::std::function& rSlideRewindFunctor) { @@ -407,8 +381,6 @@ void EffectRewinder::asynchronousRewindToPreviousSlide ( } - - } } // end of namespace ::slideshow::internal /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit