[clutter] rotate-action: Use the correct accumulator



commit 202d95d180713968ac807d9b446c1a89e6177433
Author: Emmanuele Bassi <ebassi gnome org>
Date:   Sun Aug 12 19:19:02 2012 +0100

    rotate-action: Use the correct accumulator
    
    The boolean_handled accumulator will stop the signal emission if TRUE is
    returned by a signal handler; the boolean_continue accumulator will stop
    the signal emission if FALSE is returned. The first one is used for
    event-related signals, while the latter is used for action-related
    signals.

 clutter/clutter-rotate-action.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/clutter/clutter-rotate-action.c b/clutter/clutter-rotate-action.c
index d2fb9a3..f3c4857 100644
--- a/clutter/clutter-rotate-action.c
+++ b/clutter/clutter-rotate-action.c
@@ -207,7 +207,7 @@ clutter_rotate_action_class_init (ClutterRotateActionClass *klass)
                   G_TYPE_FROM_CLASS (klass),
                   G_SIGNAL_RUN_LAST,
                   G_STRUCT_OFFSET (ClutterRotateActionClass, rotate),
-                  _clutter_boolean_handled_accumulator, NULL,
+                  _clutter_boolean_continue_accumulator, NULL,
                   _clutter_marshal_VOID__OBJECT_DOUBLE,
                   G_TYPE_BOOLEAN, 2,
                   CLUTTER_TYPE_ACTOR,



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]