mirror of
https://github.com/brl/mutter.git
synced 2024-11-26 10:00:45 -05:00
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:
parent
bf43cb6cdc
commit
5d5c7142f7
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user