diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 3 | ||||
-rw-r--r-- | gdk/gdkcolor.h | 2 |
3 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,8 @@ 2006-05-22 Matthias Clasen <mclasen@redhat.com> + * gdk/gdkcolor.h: gdk_color_parse returns boolean, not int. + (#342569, Masatake Yamato) + * gtk/gtkprintunixdialog.c (dialog_set_scale): Don't return a value from a void function. diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 735cbe856e..328651028e 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,5 +1,8 @@ 2006-05-22 Matthias Clasen <mclasen@redhat.com> + * gdk/gdkcolor.h: gdk_color_parse returns boolean, not int. + (#342569, Masatake Yamato) + * gtk/gtkprintunixdialog.c (dialog_set_scale): Don't return a value from a void function. diff --git a/gdk/gdkcolor.h b/gdk/gdkcolor.h index 0018e8f223..2ab41261b5 100644 --- a/gdk/gdkcolor.h +++ b/gdk/gdkcolor.h @@ -129,7 +129,7 @@ GdkVisual *gdk_colormap_get_visual (GdkColormap *colormap); GdkColor *gdk_color_copy (const GdkColor *color); void gdk_color_free (GdkColor *color); -gint gdk_color_parse (const gchar *spec, +gboolean gdk_color_parse (const gchar *spec, GdkColor *color); guint gdk_color_hash (const GdkColor *colora); gboolean gdk_color_equal (const GdkColor *colora, |