1
0
Fork 0

[tests] Fix a segfault in the binding-pool test

The commit that moved all the properties to floats missed the
test-binding-pool interactive test.
This commit is contained in:
Emmanuele Bassi 2009-06-11 12:36:41 +01:00
parent bf0c21e015
commit cd08dc6327

View file

@ -264,24 +264,24 @@ test_binding_pool_main (int argc, char *argv[])
clutter_container_add (CLUTTER_CONTAINER (key_group),
g_object_new (CLUTTER_TYPE_RECTANGLE,
"color", &red_color,
"width", 50,
"height", 50,
"x", 0,
"y", 0,
"width", 50.0,
"height", 50.0,
"x", 0.0,
"y", 0.0,
NULL),
g_object_new (CLUTTER_TYPE_RECTANGLE,
"color", &green_color,
"width", 50,
"height", 50,
"x", 75,
"y", 0,
"width", 50.0,
"height", 50.0,
"x", 75.0,
"y", 0.0,
NULL),
g_object_new (CLUTTER_TYPE_RECTANGLE,
"color", &blue_color,
"width", 50,
"height", 50,
"x", 150,
"y", 0,
"width", 50.0,
"height", 50.0,
"x", 150.0,
"y", 0.0,
NULL),
NULL);