diff options
author | Javier Jardón <jjardon@gnome.org> | 2010-05-25 20:38:43 +0200 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2010-06-07 00:35:40 +0200 |
commit | 2ace397eb52df6627bbcd8caef40a7dab82618f8 (patch) | |
tree | 85d1ce9f1f6acf3dfb3c600cd1d455440550bfb4 /gdk/quartz | |
parent | a18f23c478ec157b89f339caca55c0ef98b02bed (diff) | |
download | gtk+-2ace397eb52df6627bbcd8caef40a7dab82618f8.tar.gz |
Remove deprecatedd code from GdkColor
https://bugzilla.gnome.org/show_bug.cgi?id=619649
Diffstat (limited to 'gdk/quartz')
-rw-r--r-- | gdk/quartz/gdkcolor-quartz.c | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/gdk/quartz/gdkcolor-quartz.c b/gdk/quartz/gdkcolor-quartz.c index e5289067b5..b722185792 100644 --- a/gdk/quartz/gdkcolor-quartz.c +++ b/gdk/quartz/gdkcolor-quartz.c @@ -99,39 +99,6 @@ gdk_screen_get_rgba_colormap (GdkScreen *screen) return colormap; } -gint -gdk_colormap_get_system_size (void) -{ - /* FIXME: Implement */ - return 0; -} - -void -gdk_colormap_change (GdkColormap *colormap, - gint ncolors) -{ - /* FIXME: Implement */ -} - -gboolean -gdk_colors_alloc (GdkColormap *colormap, - gboolean contiguous, - gulong *planes, - gint nplanes, - gulong *pixels, - gint npixels) -{ - return TRUE; -} - -void -gdk_colors_free (GdkColormap *colormap, - gulong *pixels, - gint npixels, - gulong planes) -{ -} - void gdk_colormap_free_colors (GdkColormap *colormap, const GdkColor *colors, @@ -213,14 +180,3 @@ _gdk_quartz_colormap_get_rgba_from_pixel (GdkColormap *colormap, else *alpha = 1.0; } - -gboolean -gdk_color_change (GdkColormap *colormap, - GdkColor *color) -{ - if (color->pixel < 0 || color->pixel >= colormap->size) - return FALSE; - - return TRUE; -} - |