1
0
Fork 0

2007-08-09 Emmanuele Bassi <ebassi@openedhand.com>

* clutter/clutter-box.c: Rename a variable to fix a compiler
	warning.
This commit is contained in:
Emmanuele Bassi 2007-08-09 13:24:42 +00:00
parent 5bf83b3f0a
commit ffbf7b64ab
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2007-08-09 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-box.c: Rename a variable to fix a compiler
warning.
2007-08-08 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-behaviour-ellipse:

View file

@ -477,7 +477,7 @@ clutter_box_query_nth_child (ClutterBox *box,
ClutterBoxChild *box_child;
g_return_val_if_fail (CLUTTER_IS_BOX (box), FALSE);
g_return_val_if_fail (index > 0, FALSE);
g_return_val_if_fail (index_ > 0, FALSE);
box_child = g_list_nth_data (box->children, index_);
if (!box_child)