diff options
author | Joaquín Ignacio Aramendía <[email protected]> | 2014-06-25 23:21:28 -0300 |
---|---|---|
committer | Joaquín Ignacio Aramendía <[email protected]> | 2014-06-26 20:26:23 -0300 |
commit | 5b415150cf3676ee95e1da7d5a29093cd20e6c4e (patch) | |
tree | cfa21e7fb23d1974bc660c5e1d363049923470ca /src/core | |
parent | 12e9874307e73f613036ad8f370bc05650c84298 (diff) | |
download | marco-5b415150cf3676ee95e1da7d5a29093cd20e6c4e.tar.bz2 marco-5b415150cf3676ee95e1da7d5a29093cd20e6c4e.tar.xz |
Remove misleading comment in effect_free function
The new behaviour is the animation callback function should run the
finished function once it's done with the animation.
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/effects.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/core/effects.c b/src/core/effects.c index 5d0d24a6..853d5ce9 100644 --- a/src/core/effects.c +++ b/src/core/effects.c @@ -179,17 +179,13 @@ create_effect (MetaEffectType type, } /** - * Destroys an effect. If the effect has a "finished" hook, it will be - * called before cleanup. + * Destroys an effect. * * \param effect The effect. */ static void effect_free (MetaEffect *effect) { - /*if (effect->priv->finished) - effect->priv->finished (effect->priv->finished_data);*/ - g_free (effect->priv); g_free (effect); } |