From 521162a01c9155ab012afc8f723f26213d3ce86b Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Mon, 19 Nov 2007 00:02:13 +0000 Subject: [PATCH] 2007-11-19 Emmanuele Bassi * clutter/clutter-label.[ch]: Constify the color argument for the ClutterLabel ctor. (#604) --- ChangeLog | 5 +++++ clutter/clutter-label.c | 6 +++--- clutter/clutter-label.h | 6 +++--- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index e437952a4..f1efcb2a2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-11-19 Emmanuele Bassi + + * clutter/clutter-label.[ch]: Constify the color argument + for the ClutterLabel ctor. (#604) + 2007-11-18 Matthew Allum * clutter/clutter-actor.c: diff --git a/clutter/clutter-label.c b/clutter/clutter-label.c index c93a55ed7..4d056399f 100644 --- a/clutter/clutter-label.c +++ b/clutter/clutter-label.c @@ -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; diff --git a/clutter/clutter-label.h b/clutter/clutter-label.h index 18937ffcc..c7b86fcbe 100644 --- a/clutter/clutter-label.h +++ b/clutter/clutter-label.h @@ -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);