From c13290240c6087411835da1e6080ce3389714922 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Wed, 6 Jun 2012 13:37:02 +0100 Subject: [PATCH] examples/constraints: Do not use deprecated API --- examples/constraints.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/constraints.c b/examples/constraints.c index 532eb3243..99af0a4d3 100644 --- a/examples/constraints.c +++ b/examples/constraints.c @@ -13,7 +13,7 @@ main (int argc, char *argv[]) stage = clutter_stage_new (); clutter_actor_set_name (stage, "stage"); clutter_stage_set_title (CLUTTER_STAGE (stage), "Snap Constraint"); - clutter_stage_set_color (CLUTTER_STAGE (stage), CLUTTER_COLOR_Aluminium1); + clutter_actor_set_background_color (stage, CLUTTER_COLOR_Aluminium1); clutter_stage_set_user_resizable (CLUTTER_STAGE (stage), TRUE); g_signal_connect (stage, "destroy", G_CALLBACK (clutter_main_quit), NULL);