X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Feffect.cpp;h=6fcec47c2b46cd5ada678b938f6af46e4dd767fc;hb=c479733f090192ea0d3be3a1789113d5dda85a57;hp=df7cc533fb270ed906c7a63e9a9c6b0f873272f6;hpb=fdb9b8b2d07ef0695275ad353f40ff068779a82f;p=jspeed diff --git a/src/effect.cpp b/src/effect.cpp index df7cc53..6fcec47 100644 --- a/src/effect.cpp +++ b/src/effect.cpp @@ -22,6 +22,7 @@ #include "dropshadoweffect.h" #include "blureffect.h" #include "opacityeffect.h" +#include "flickereffect.h" Effect::Effect() @@ -42,6 +43,10 @@ Effect* Effect::getEffect(QString const& name) { return new OpacityEffect; } + else if(name == "flicker") + { + return new FlickerEffect; + } return 0; }