From ace2a16807ef23c10b2a023532a871f3821bef0a Mon Sep 17 00:00:00 2001 From: Kovarththanan Rajaratnam Date: Tue, 22 Sep 2009 04:10:50 +0000 Subject: Constify colour source svn path=/trunk/; revision=30059 --- gtk/color_utils.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gtk/color_utils.h') diff --git a/gtk/color_utils.h b/gtk/color_utils.h index d19a47e7a8..1f28e1d1da 100644 --- a/gtk/color_utils.h +++ b/gtk/color_utils.h @@ -52,14 +52,14 @@ gboolean get_color(GdkColor *new_color); * @param target the GdkColor to be filled * @param source the source color_t */ -void color_t_to_gdkcolor(GdkColor *target, color_t *source); +void color_t_to_gdkcolor(GdkColor *target, const color_t *source); /** Convert GdkColor to color_t. * * @param target the source color_t * @param source the GdkColor to be filled */ -void gdkcolor_to_color_t(color_t *target, GdkColor *source); +void gdkcolor_to_color_t(color_t *target, const GdkColor *source); #if GTK_CHECK_VERSION(2,12,0) #else -- cgit v1.2.3