From 587d91caad20cbe5feee08652acabf55dc23070e Mon Sep 17 00:00:00 2001 From: Elliot Lee Date: Tue, 2 Nov 1999 23:44:32 +0000 Subject: Make the arguments to the write/load_increment operations const-correct. * src/gdk-pixbuf-loader.[ch], src/gdk-pixbuf-io.h: Make the arguments to the write/load_increment operations const-correct. --- gdk-pixbuf/ChangeLog | 4 ++++ gdk-pixbuf/gdk-pixbuf-io.h | 2 +- gdk-pixbuf/gdk-pixbuf-loader.c | 4 ++-- gdk-pixbuf/gdk-pixbuf-loader.h | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) (limited to 'gdk-pixbuf') diff --git a/gdk-pixbuf/ChangeLog b/gdk-pixbuf/ChangeLog index e98ffe8c7..57ba7c401 100644 --- a/gdk-pixbuf/ChangeLog +++ b/gdk-pixbuf/ChangeLog @@ -1,3 +1,7 @@ +1999-11-02 Elliot Lee + * src/gdk-pixbuf-loader.[ch], src/gdk-pixbuf-io.h: Make the arguments to the + write/load_increment operations const-correct. + 1999-11-02 Federico Mena Quintero * src/gnome-canvas-pixbuf.c (gnome_canvas_pixbuf_point): diff --git a/gdk-pixbuf/gdk-pixbuf-io.h b/gdk-pixbuf/gdk-pixbuf-io.h index 0e203b54c..4706106a8 100644 --- a/gdk-pixbuf/gdk-pixbuf-io.h +++ b/gdk-pixbuf/gdk-pixbuf-io.h @@ -51,7 +51,7 @@ struct _GdkPixbufModule { /* Incremental loading */ gpointer (* begin_load) (ModulePreparedNotifyFunc func, gpointer user_data); void (* stop_load) (gpointer context); - gboolean (* load_increment)(gpointer context, guchar *buf, guint size); + gboolean (* load_increment)(gpointer context, const gchar *buf, guint size); }; diff --git a/gdk-pixbuf/gdk-pixbuf-loader.c b/gdk-pixbuf/gdk-pixbuf-loader.c index 525345d57..c62d325f8 100644 --- a/gdk-pixbuf/gdk-pixbuf-loader.c +++ b/gdk-pixbuf/gdk-pixbuf-loader.c @@ -273,7 +273,7 @@ gdk_pixbuf_loader_load_module(GdkPixbufLoader *loader) } static int -gdk_pixbuf_loader_eat_header_write (GdkPixbufLoader *loader, guchar *buf, size_t count) +gdk_pixbuf_loader_eat_header_write (GdkPixbufLoader *loader, const gchar *buf, size_t count) { int nbytes; GdkPixbufLoaderPrivate *priv = loader->private; @@ -303,7 +303,7 @@ gdk_pixbuf_loader_eat_header_write (GdkPixbufLoader *loader, guchar *buf, size_t * cannot parse the buf. **/ gboolean -gdk_pixbuf_loader_write (GdkPixbufLoader *loader, guchar *buf, size_t count) +gdk_pixbuf_loader_write (GdkPixbufLoader *loader, const gchar *buf, size_t count) { GdkPixbufLoaderPrivate *priv; diff --git a/gdk-pixbuf/gdk-pixbuf-loader.h b/gdk-pixbuf/gdk-pixbuf-loader.h index 3e947ec05..76997a117 100644 --- a/gdk-pixbuf/gdk-pixbuf-loader.h +++ b/gdk-pixbuf/gdk-pixbuf-loader.h @@ -68,7 +68,7 @@ struct _GdkPixbufLoaderClass { GtkType gdk_pixbuf_loader_get_type (void); GdkPixbufLoader *gdk_pixbuf_loader_new (void); -gboolean gdk_pixbuf_loader_write (GdkPixbufLoader *loader, guchar *buf, size_t count); +gboolean gdk_pixbuf_loader_write (GdkPixbufLoader *loader, const gchar *buf, size_t count); GdkPixbuf *gdk_pixbuf_loader_get_pixbuf (GdkPixbufLoader *loader); void gdk_pixbuf_loader_close (GdkPixbufLoader *loader); -- cgit v1.2.1