More minor config fixes.

This commit is contained in:
Raph Levien 1998-07-21 05:53:44 +00:00
parent 4667d36ccd
commit d154bfafd9
8 changed files with 28 additions and 20 deletions

View File

@ -1,3 +1,7 @@
1998-07-20 Raph Levien <raph@acm.org>
* gdk/gdkrgb.c: More cleanups in the config process.
1998-07-20 Raph Levien <raph@acm.org>
* gdkrgb.c: Fixed minor config bug preventing big-endian

View File

@ -1,3 +1,7 @@
1998-07-20 Raph Levien <raph@acm.org>
* gdk/gdkrgb.c: More cleanups in the config process.
1998-07-20 Raph Levien <raph@acm.org>
* gdkrgb.c: Fixed minor config bug preventing big-endian

View File

@ -1,3 +1,7 @@
1998-07-20 Raph Levien <raph@acm.org>
* gdk/gdkrgb.c: More cleanups in the config process.
1998-07-20 Raph Levien <raph@acm.org>
* gdkrgb.c: Fixed minor config bug preventing big-endian

View File

@ -1,3 +1,7 @@
1998-07-20 Raph Levien <raph@acm.org>
* gdk/gdkrgb.c: More cleanups in the config process.
1998-07-20 Raph Levien <raph@acm.org>
* gdkrgb.c: Fixed minor config bug preventing big-endian

View File

@ -1,3 +1,7 @@
1998-07-20 Raph Levien <raph@acm.org>
* gdk/gdkrgb.c: More cleanups in the config process.
1998-07-20 Raph Levien <raph@acm.org>
* gdkrgb.c: Fixed minor config bug preventing big-endian

View File

@ -1,3 +1,7 @@
1998-07-20 Raph Levien <raph@acm.org>
* gdk/gdkrgb.c: More cleanups in the config process.
1998-07-20 Raph Levien <raph@acm.org>
* gdkrgb.c: Fixed minor config bug preventing big-endian

View File

@ -1,3 +1,7 @@
1998-07-20 Raph Levien <raph@acm.org>
* gdk/gdkrgb.c: More cleanups in the config process.
1998-07-20 Raph Levien <raph@acm.org>
* gdkrgb.c: Fixed minor config bug preventing big-endian

View File

@ -55,16 +55,6 @@ struct _GdkRgbInfo
gulong *gray_pixels;
gulong *reserved_pixels;
gulong *lookup_red;
gulong *lookup_green;
gulong *lookup_blue;
GtkDitherInfo *dither_red;
GtkDitherInfo *dither_green;
GtkDitherInfo *dither_blue;
GtkDitherInfo *dither_gray;
guchar ***dither_matrix;
guint nred_shades;
guint ngreen_shades;
guint nblue_shades;
@ -518,16 +508,6 @@ gdk_rgb_init (void)
image_info->gray_pixels = NULL;
image_info->reserved_pixels = NULL;
image_info->lookup_red = NULL;
image_info->lookup_green = NULL;
image_info->lookup_blue = NULL;
image_info->dither_red = NULL;
image_info->dither_green = NULL;
image_info->dither_blue = NULL;
image_info->dither_gray = NULL;
image_info->dither_matrix = NULL;
image_info->nred_shades = 6;
image_info->ngreen_shades = 6;
image_info->nblue_shades = 4;