2007-12-06 Emmanuele Bassi <ebassi@openedhand.com>

* tests/test-unproject.c: Fix type comparison.

	* tests/test-score.c: Save the returned ids.
This commit is contained in:
Emmanuele Bassi 2007-12-06 09:07:12 +00:00
parent 8e44f0613f
commit 2a5a4f598f
2 changed files with 7 additions and 6 deletions

View File

@ -42,6 +42,7 @@ main (int argc, char **argv)
ClutterTimeline *timeline_2; ClutterTimeline *timeline_2;
ClutterTimeline *timeline_3; ClutterTimeline *timeline_3;
ClutterTimeline *timeline_4; ClutterTimeline *timeline_4;
guint t1, t2, t3, t4;
clutter_init (&argc, &argv); clutter_init (&argc, &argv);
@ -77,20 +78,20 @@ main (int argc, char **argv)
G_CALLBACK (clutter_main_quit), G_CALLBACK (clutter_main_quit),
NULL); NULL);
clutter_score_append (score, NULL, timeline_1); t1 = clutter_score_append (score, NULL, timeline_1);
clutter_score_append (score, timeline_1, timeline_2); t2 = clutter_score_append (score, timeline_1, timeline_2);
clutter_score_append (score, timeline_1, timeline_3); t3 = clutter_score_append (score, timeline_1, timeline_3);
clutter_score_append (score, timeline_3, timeline_4); t4 = clutter_score_append (score, timeline_3, timeline_4);
clutter_score_start (score); clutter_score_start (score);
clutter_main (); clutter_main ();
g_object_unref (score);
g_object_unref (timeline_1); g_object_unref (timeline_1);
g_object_unref (timeline_2); g_object_unref (timeline_2);
g_object_unref (timeline_3); g_object_unref (timeline_3);
g_object_unref (timeline_4); g_object_unref (timeline_4);
g_object_unref (score);
return EXIT_SUCCESS; return EXIT_SUCCESS;
} }

View File

@ -36,7 +36,7 @@ on_event (ClutterStage *stage,
{ {
gchar *txt; gchar *txt;
if (actor != stage) if (actor != CLUTTER_ACTOR (stage))
txt = g_strdup_printf ("Click on rectangle\n" txt = g_strdup_printf ("Click on rectangle\n"
"Screen coords: [%d, %d]\n" "Screen coords: [%d, %d]\n"
"Local coords : [%d, %d]", "Local coords : [%d, %d]",