diff src/color-man.c @ 1000:4fe8f9656107

For the sake of consistency, use glib basic types everywhere.
author zas_
date Tue, 26 Aug 2008 22:22:51 +0000
parents c0dda0ffb931
children 1646720364cf
line wrap: on
line diff
--- a/src/color-man.c	Tue Aug 26 21:19:33 2008 +0000
+++ b/src/color-man.c	Tue Aug 26 22:22:51 2008 +0000
@@ -97,7 +97,7 @@
 }
 
 static cmsHPROFILE color_man_cache_load_profile(ColorManProfileType type, const gchar *file,
-						unsigned char *data, guint data_len)
+						guchar *data, guint data_len)
 {
 	cmsHPROFILE profile = NULL;
 
@@ -134,7 +134,7 @@
 }
 
 static ColorManCache *color_man_cache_new(ColorManProfileType in_type, const gchar *in_file,
-					  unsigned char *in_data, guint in_data_len,
+					  guchar *in_data, guint in_data_len,
 					  ColorManProfileType out_type, const gchar *out_file,
 					  gint has_alpha)
 {
@@ -251,7 +251,7 @@
 }
 
 static ColorManCache *color_man_cache_get(ColorManProfileType in_type, const gchar *in_file,
-					  unsigned char *in_data, guint in_data_len,
+					  guchar *in_data, guint in_data_len,
 					  ColorManProfileType out_type, const gchar *out_file,
 					  gint has_alpha)
 {
@@ -355,7 +355,7 @@
 
 static ColorMan *color_man_new_real(ImageWindow *imd, GdkPixbuf *pixbuf,
 				    ColorManProfileType input_type, const gchar *input_file,
-				    unsigned char *input_data, guint input_data_len,
+				    guchar *input_data, guint input_data_len,
 				    ColorManProfileType screen_type, const gchar *screen_file)
 {
 	ColorMan *cm;
@@ -402,7 +402,7 @@
 }
 
 ColorMan *color_man_new_embedded(ImageWindow *imd, GdkPixbuf *pixbuf,
-				 unsigned char *input_data, guint input_data_len,
+				 guchar *input_data, guint input_data_len,
 				 ColorManProfileType screen_type, const gchar *screen_file)
 {
 	return color_man_new_real(imd, pixbuf,
@@ -440,7 +440,7 @@
 }
 
 ColorMan *color_man_new_embedded(ImageWindow *imd, GdkPixbuf *pixbuf,
-				 unsigned char *input_data, guint input_data_len,
+				 guchar *input_data, guint input_data_len,
 				 ColorManProfileType screen_type, const gchar *screen_file)
 {
 	/* no op */