From 68f618ce0bdd1618479a51dfc20fc402df44d843 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Mon, 18 Feb 2008 14:32:57 +0000 Subject: [PATCH] 2008-02-18 Emmanuele Bassi * clutter/clutter-list-model.c: (clutter_list_model_iter_set_value): Fix a typo in the conversion code. --- ChangeLog | 6 ++++++ clutter/clutter-list-model.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 70bd3828e..ffb42cee4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-02-18 Emmanuele Bassi + + * clutter/clutter-list-model.c: + (clutter_list_model_iter_set_value): Fix a typo in the conversion + code. + 2008-02-18 Chris Lord * README: diff --git a/clutter/clutter-list-model.c b/clutter/clutter-list-model.c index 520e1568a..bbd4a5716 100644 --- a/clutter/clutter-list-model.c +++ b/clutter/clutter-list-model.c @@ -149,7 +149,7 @@ clutter_list_model_iter_get_value (ClutterModelIter *iter, 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_STRLOC,