2007-11-22 Emmanuele Bassi <ebassi@openedhand.com>

* clutter/clutter-label.c (clutter_label_new_full): Set the
	terminating NULL which was removed when applying patch for
	fixing #606. (#645, Gwenole Beauchesne)
This commit is contained in:
Emmanuele Bassi 2007-11-22 13:41:00 +00:00
parent c7292a0d8b
commit 8039922802
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2007-11-22 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-label.c (clutter_label_new_full): Set the
terminating NULL which was removed when applying patch for
fixing #606. (#645, Gwenole Beauchesne)
2007-11-22 Øyvind Kolås <pippin@o-hand.com>
* clutter/clutter-actor.c: mended a couple of typos in documentation.

View File

@ -800,7 +800,8 @@ clutter_label_new_full (const gchar *font_name,
return g_object_new (CLUTTER_TYPE_LABEL,
"font-name", font_name,
"text", text,
"color", color);
"color", color,
NULL);
}
/**