summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorThomas Thurman <tthurman@gnome.org>2008-06-29 03:20:52 +0000
committerThomas James Alexander Thurman <tthurman@src.gnome.org>2008-06-29 03:20:52 +0000
commit6039694effc408f00fe580f4439aa79645dab147 (patch)
tree3a0a47c207b3e6b5a4c827b34d847815adc8f119 /ChangeLog
parent12ffd2954236c8a4b69d33118b030107a4b59877 (diff)
downloadmetacity-6039694effc408f00fe580f4439aa79645dab147.tar.gz
Some refactoring, simplifying, and commenting of the non-composited
2008-06-28 Thomas Thurman <tthurman@gnome.org> Some refactoring, simplifying, and commenting of the non-composited effects code. effects.c could still do with some polish, which will come along later. * src/core/effects.h (meta_push_effect_handler): removed since it's never used and does nothing very useful. * src/core/effects.h (meta_pop_effect_handler): removed since its only effect is to crash the program. * src/core/effects.h (META_MINIMIZE_ANIMATION_LENGTH, META_SHADE_ANIMATION_LENGTH): move to effects.c because they're used nowhere else. * src/core/effects.c: there were three versions of the box-zoom effect. Remove the one which was never used, and make only the ones which are used with certain configure settings be compiled. * src/core/effects.h (meta_effect_end): move to effects.c, make static, and rename to effect_free. * src/core/effects.h (meta_effects_draw_box_animation): move to effects.c, make static, and rename to draw_box_animation. * src/core/effects.h (MetaEffectType): remove the values which weren't used. * src/core/window.c (meta_window_shade): remove commented-out code to call effect for shading. * src/core/effects.h (MetaEffectFinish): remove useless MetaEffect parameter. * src/core/window.c (finish_minimize): remove MetaEffect parameter. svn path=/trunk/; revision=3771
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog30
1 files changed, 27 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 73f86178..3e1ca88d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,30 @@
- * src/core/stack.c (stack_sync_to_server): lose meta prefix
- since it's static.
-
+2008-06-28 Thomas Thurman <tthurman@gnome.org>
+
+ Some refactoring, simplifying, and commenting of the non-composited
+ effects code. effects.c could still do with some polish, which will
+ come along later.
+
+ * src/core/effects.h (meta_push_effect_handler): removed since it's
+ never used and does nothing very useful.
+ * src/core/effects.h (meta_pop_effect_handler): removed since its
+ only effect is to crash the program.
+ * src/core/effects.h (META_MINIMIZE_ANIMATION_LENGTH,
+ META_SHADE_ANIMATION_LENGTH): move to effects.c because they're used
+ nowhere else.
+ * src/core/effects.c: there were three versions of the box-zoom effect.
+ Remove the one which was never used, and make only the ones which
+ are used with certain configure settings be compiled.
+ * src/core/effects.h (meta_effect_end): move to effects.c, make static,
+ and rename to effect_free.
+ * src/core/effects.h (meta_effects_draw_box_animation): move to
+ effects.c, make static, and rename to draw_box_animation.
+ * src/core/effects.h (MetaEffectType): remove the values which weren't
+ used.
+ * src/core/window.c (meta_window_shade): remove commented-out code to
+ call effect for shading.
+ * src/core/effects.h (MetaEffectFinish): remove useless MetaEffect
+ parameter.
+ * src/core/window.c (finish_minimize): remove MetaEffect parameter.
2008-06-27 Thomas Thurman <tthurman@gnome.org>