From bcfa67e91ab291a18ef89e5642f3f6f54b7e337f Mon Sep 17 00:00:00 2001 From: Philip Falkner Date: Wed, 7 Feb 2007 19:21:33 +0000 Subject: [PATCH] Fix DesktopChangeSlide effect creation. svn path=/branches/work/kwin_composite/; revision=631344 --- effects.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/effects.cpp b/effects.cpp index 3a5c00c6d0..0d3b486283 100644 --- a/effects.cpp +++ b/effects.cpp @@ -120,7 +120,6 @@ EffectsHandler::EffectsHandler() if( !compositing()) return; KWinInternal::effects = this; -// effects.append( new DesktopChangeSlideEffect ); registerEffect("ShowFps", new GenericEffectFactory); registerEffect("Zoom", new GenericEffectFactory); @@ -135,6 +134,7 @@ EffectsHandler::EffectsHandler() registerEffect("FadeOut", new GenericEffectFactory); registerEffect("ScaleIn", new GenericEffectFactory); registerEffect("DialogParent", new GenericEffectFactory); + registerEffect("DesktopChangeSlide", new GenericEffectFactory); registerEffect("TestInput", new GenericEffectFactory); QStringList::const_iterator effectsIterator;