app: all Babls used by GIMP are now const

This commit is contained in:
Øyvind Kolås 2012-03-18 16:48:42 +00:00 committed by Michael Natterer
parent b68a05f240
commit 7250085d1c
1 changed files with 2 additions and 2 deletions

View File

@ -50,8 +50,8 @@ struct _GimpImagePrivate
guchar *colormap; /* colormap (for indexed) */
gint n_colors; /* # of colors (for indexed) */
GimpPalette *palette; /* palette of colormap */
Babl *babl_palette_rgb; /* palette's RGB Babl format */
Babl *babl_palette_rgba; /* palette's RGBA Babl format */
const Babl *babl_palette_rgb; /* palette's RGB Babl format */
const Babl *babl_palette_rgba; /* palette's RGBA Babl format */
gint dirty; /* dirty flag -- # of ops */
guint dirty_time; /* time when image became dirty */