mirror of
https://github.com/brl/mutter.git
synced 2024-12-23 11:32:04 +00:00
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:
parent
382852f921
commit
521162a01c
@ -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>
|
2007-11-18 Matthew Allum <mallum@openedhand.com>
|
||||||
|
|
||||||
* clutter/clutter-actor.c:
|
* clutter/clutter-actor.c:
|
||||||
|
@ -585,7 +585,7 @@ clutter_label_new_with_text (const gchar *font_name,
|
|||||||
ClutterActor*
|
ClutterActor*
|
||||||
clutter_label_new_full (const gchar *font_name,
|
clutter_label_new_full (const gchar *font_name,
|
||||||
const gchar *text,
|
const gchar *text,
|
||||||
ClutterColor *color)
|
const ClutterColor *color)
|
||||||
{
|
{
|
||||||
/* FIXME: really new_with_text should take color argument... */
|
/* FIXME: really new_with_text should take color argument... */
|
||||||
ClutterActor *label;
|
ClutterActor *label;
|
||||||
|
@ -84,7 +84,7 @@ ClutterActor * clutter_label_new (void);
|
|||||||
|
|
||||||
ClutterActor* clutter_label_new_full (const gchar *font_name,
|
ClutterActor* clutter_label_new_full (const gchar *font_name,
|
||||||
const gchar *text,
|
const gchar *text,
|
||||||
ClutterColor *color);
|
const ClutterColor *color);
|
||||||
|
|
||||||
ClutterActor * clutter_label_new_with_text (const gchar *font_name,
|
ClutterActor * clutter_label_new_with_text (const gchar *font_name,
|
||||||
const gchar *text);
|
const gchar *text);
|
||||||
|
Loading…
Reference in New Issue
Block a user