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

* clutter/clutter-label.[ch]: Constify the color argument
	for the ClutterLabel ctor. (#604)
This commit is contained in:
Emmanuele Bassi 2007-11-19 00:02:13 +00:00
parent 382852f921
commit 521162a01c
3 changed files with 11 additions and 6 deletions

View File

@ -1,3 +1,8 @@
2007-11-19 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-label.[ch]: Constify the color argument
for the ClutterLabel ctor. (#604)
2007-11-18 Matthew Allum <mallum@openedhand.com>
* clutter/clutter-actor.c:

View File

@ -583,9 +583,9 @@ clutter_label_new_with_text (const gchar *font_name,
* Return value: a #ClutterLabel
*/
ClutterActor*
clutter_label_new_full (const gchar *font_name,
const gchar *text,
ClutterColor *color)
clutter_label_new_full (const gchar *font_name,
const gchar *text,
const ClutterColor *color)
{
/* FIXME: really new_with_text should take color argument... */
ClutterActor *label;

View File

@ -82,9 +82,9 @@ GType clutter_label_get_type (void) G_GNUC_CONST;
ClutterActor * clutter_label_new (void);
ClutterActor* clutter_label_new_full (const gchar *font_name,
const gchar *text,
ClutterColor *color);
ClutterActor* clutter_label_new_full (const gchar *font_name,
const gchar *text,
const ClutterColor *color);
ClutterActor * clutter_label_new_with_text (const gchar *font_name,
const gchar *text);