1
0
Fork 0

text: Use G_SIGNAL_ACTION for ::insert-text and ::delete-text

Both the ::insert-text and ::delete-text are "action" signals, that is
signals that are safe to (and should) be emitted using g_signal_emit()
directly.
This commit is contained in:
Emmanuele Bassi 2010-01-04 12:03:47 +00:00
parent bf43cb6cdc
commit 5d5c7142f7

View file

@ -2594,7 +2594,7 @@ clutter_text_class_init (ClutterTextClass *klass)
text_signals[INSERT_TEXT] =
g_signal_new ("insert-text",
G_TYPE_FROM_CLASS (gobject_class),
G_SIGNAL_RUN_LAST,
G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
0,
NULL, NULL,
clutter_marshal_VOID__STRING_INT_POINTER,
@ -2617,7 +2617,7 @@ clutter_text_class_init (ClutterTextClass *klass)
text_signals[DELETE_TEXT] =
g_signal_new ("delete-text",
G_TYPE_FROM_CLASS (gobject_class),
G_SIGNAL_RUN_LAST,
G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
0,
NULL, NULL,
clutter_marshal_VOID__INT_INT,