mirror of
https://github.com/brl/mutter.git
synced 2025-01-10 11:42:49 +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:
parent
6fe23fefe9
commit
8996406189
10
ChangeLog
10
ChangeLog
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user