[clutter] API inconsistency

2009-02-25 Thread Michal Kolodziejczyk
Hello, would it be possible to make API more consistent? For example: gboolean clutter_color_parse (const gchar *color, ClutterColor *dest); void clutter_color_from_pixel (ClutterColor *dest, guint32 pixel); If it was: gboolean clutter_color_parse (ClutterColor *dest, const gchar *color) it

Re: [clutter] API inconsistency

2009-02-25 Thread Emmanuele Bassi
On Wed, 2009-02-25 at 17:30 +0100, Michal Kolodziejczyk wrote: Hello, would it be possible to make API more consistent? it depends on how you define consistency. :-) for clutter_color_parse() I followed the gtk+ style -- see gdk_color_parse(). it's also following the rest of the API, where