2008-02-18 Emmanuele Bassi <ebassi@openedhand.com>

* clutter/clutter-list-model.c:
	(clutter_list_model_iter_set_value): Fix a typo in the conversion
	code.
This commit is contained in:
Emmanuele Bassi 2008-02-18 14:32:57 +00:00
parent f677e33588
commit 68f618ce0b
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2008-02-18 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-list-model.c:
(clutter_list_model_iter_set_value): Fix a typo in the conversion
code.
2008-02-18 Chris Lord <chris@openedhand.com> 2008-02-18 Chris Lord <chris@openedhand.com>
* README: * README:

View File

@ -149,7 +149,7 @@ clutter_list_model_iter_get_value (ClutterModelIter *iter,
return; return;
} }
if (!g_value_transform (value, &real_value)) if (!g_value_transform (iter_value, &real_value))
{ {
g_warning ("%s: Unable to make conversion from %s to %s", g_warning ("%s: Unable to make conversion from %s to %s",
G_STRLOC, G_STRLOC,