mirror of
https://github.com/brl/mutter.git
synced 2025-06-14 01:09:30 +00:00
2008-06-15 Emmanuele Bassi <ebassi@openedhand.com>
Bug #967 - Mismatch of Timeline::marker-reached signal signature * clutter/clutter-marshal.list: * clutter/clutter-timeline.c: (clutter_timeline_class_init): Fix the type of the frame_num argument in the ::marker-reached signal creation to match the signal class handler. (Armin Burgmeier)
This commit is contained in:
@ -9,5 +9,5 @@ VOID:OBJECT
|
||||
VOID:OBJECT,OBJECT,PARAM
|
||||
VOID:OBJECT,POINTER
|
||||
VOID:STRING,BOOLEAN,BOOLEAN
|
||||
VOID:STRING,UINT
|
||||
VOID:STRING,INT
|
||||
VOID:VOID
|
||||
|
@ -552,10 +552,10 @@ clutter_timeline_class_init (ClutterTimelineClass *klass)
|
||||
G_SIGNAL_RUN_LAST | G_SIGNAL_NO_RECURSE | G_SIGNAL_DETAILED | G_SIGNAL_NO_HOOKS,
|
||||
G_STRUCT_OFFSET (ClutterTimelineClass, marker_reached),
|
||||
NULL, NULL,
|
||||
clutter_marshal_VOID__STRING_UINT,
|
||||
clutter_marshal_VOID__STRING_INT,
|
||||
G_TYPE_NONE, 2,
|
||||
G_TYPE_STRING,
|
||||
G_TYPE_UINT);
|
||||
G_TYPE_INT);
|
||||
}
|
||||
|
||||
static void
|
||||
|
Reference in New Issue
Block a user