From bcc418638838eedaefcd3f3f302453f4785b2d70 Mon Sep 17 00:00:00 2001 From: Cosimo Cecchi Date: Wed, 8 Feb 2012 18:08:52 -0500 Subject: [PATCH] color-swatch: remove gtk_color_swatch_set_corner_radii() It's unused now. --- gtk/gtkcolorswatch.c | 15 --------------- gtk/gtkcolorswatch.h | 7 +------ 2 files changed, 1 insertion(+), 21 deletions(-) diff --git a/gtk/gtkcolorswatch.c b/gtk/gtkcolorswatch.c index 3c82ba981f..fd5f6a8b23 100644 --- a/gtk/gtkcolorswatch.c +++ b/gtk/gtkcolorswatch.c @@ -691,21 +691,6 @@ gtk_color_swatch_get_rgba (GtkColorSwatch *swatch, } } -void -gtk_color_swatch_set_corner_radii (GtkColorSwatch *swatch, - gdouble top_left, - gdouble top_right, - gdouble bottom_right, - gdouble bottom_left) -{ - swatch->priv->radius[0] = top_left; - swatch->priv->radius[1] = top_right; - swatch->priv->radius[2] = bottom_right; - swatch->priv->radius[3] = bottom_left; - - gtk_widget_queue_draw (GTK_WIDGET (swatch)); -} - void gtk_color_swatch_set_selected (GtkColorSwatch *swatch, gboolean selected) diff --git a/gtk/gtkcolorswatch.h b/gtk/gtkcolorswatch.h index 77e45eadd6..71bcd1ada8 100644 --- a/gtk/gtkcolorswatch.h +++ b/gtk/gtkcolorswatch.h @@ -68,12 +68,7 @@ GType gtk_color_swatch_get_type (void) G_GNUC_CONST; G_GNUC_INTERNAL GtkWidget * gtk_color_swatch_new (void); -G_GNUC_INTERNAL -void gtk_color_swatch_set_corner_radii (GtkColorSwatch *swatch, - gdouble top_left, - gdouble top_right, - gdouble bottom_right, - gdouble bottom_left); + G_GNUC_INTERNAL void gtk_color_swatch_set_rgba (GtkColorSwatch *swatch, const GdkRGBA *color);