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

@ -1,3 +1,13 @@
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)
2008-06-14 Emmanuele Bassi <ebassi@openedhand.com> 2008-06-14 Emmanuele Bassi <ebassi@openedhand.com>
* README: We depend on PangoCairo, now; also add all the missing * README: We depend on PangoCairo, now; also add all the missing

View File

@ -9,5 +9,5 @@ VOID:OBJECT
VOID:OBJECT,OBJECT,PARAM VOID:OBJECT,OBJECT,PARAM
VOID:OBJECT,POINTER VOID:OBJECT,POINTER
VOID:STRING,BOOLEAN,BOOLEAN VOID:STRING,BOOLEAN,BOOLEAN
VOID:STRING,UINT VOID:STRING,INT
VOID:VOID VOID:VOID

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_SIGNAL_RUN_LAST | G_SIGNAL_NO_RECURSE | G_SIGNAL_DETAILED | G_SIGNAL_NO_HOOKS,
G_STRUCT_OFFSET (ClutterTimelineClass, marker_reached), G_STRUCT_OFFSET (ClutterTimelineClass, marker_reached),
NULL, NULL, NULL, NULL,
clutter_marshal_VOID__STRING_UINT, clutter_marshal_VOID__STRING_INT,
G_TYPE_NONE, 2, G_TYPE_NONE, 2,
G_TYPE_STRING, G_TYPE_STRING,
G_TYPE_UINT); G_TYPE_INT);
} }
static void static void