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:
Emmanuele Bassi
2008-06-15 12:50:05 +00:00
parent 6fe23fefe9
commit 8996406189
3 changed files with 13 additions and 3 deletions

View File

@ -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