From 7c8fdee369ee60cf4670b8f78d38396708e79e29 Mon Sep 17 00:00:00 2001 From: Neil Roberts Date: Thu, 24 Jul 2008 09:11:54 +0000 Subject: [PATCH] * clutter/clutter-script.c: The example in the documentation showed a color being specified as '0xff0000ff' but it should be '#ff0000ff' --- ChangeLog | 6 ++++++ clutter/clutter-script.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index bbac74121..a8a7384f6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-07-24 Neil Roberts + + * clutter/clutter-script.c: The example in the documentation + showed a color being specified as '0xff0000ff' but it should be + '#ff0000ff' + 2008-07-23 Emmanuele Bassi Bug 1062 - clutter_actor_query_coords() replacement in 0.8 diff --git a/clutter/clutter-script.c b/clutter/clutter-script.c index 43f219232..b0e6f83ff 100644 --- a/clutter/clutter-script.c +++ b/clutter/clutter-script.c @@ -53,7 +53,7 @@ * "type" : "ClutterRectangle", * "width" : 100, * "height" : 100, - * "color" : "0xff0000ff" + * "color" : "#ff0000ff" * } * ]| *