spinner cell: Avoid a crash

The icon helper is not used, so no point in crashing
while trying to destroy it.
This commit is contained in:
Matthias Clasen 2017-12-31 12:47:40 -05:00
parent d072201b12
commit 361a3885b5

View File

@ -189,7 +189,6 @@ gtk_cell_renderer_spinner_update_size (GtkCellRendererSpinner *cell,
{ {
GtkCellRendererSpinnerPrivate *priv = cell->priv; GtkCellRendererSpinnerPrivate *priv = cell->priv;
GtkStyleContext *context; GtkStyleContext *context;
GtkIconHelper icon_helper;
GtkCssNode *node; GtkCssNode *node;
GtkCssStyle *style; GtkCssStyle *style;
@ -202,7 +201,6 @@ gtk_cell_renderer_spinner_update_size (GtkCellRendererSpinner *cell,
style = gtk_css_node_get_style (node); style = gtk_css_node_get_style (node);
priv->size = _gtk_css_number_value_get (gtk_css_style_get_value (style, GTK_CSS_PROPERTY_ICON_SIZE), 100); priv->size = _gtk_css_number_value_get (gtk_css_style_get_value (style, GTK_CSS_PROPERTY_ICON_SIZE), 100);
gtk_icon_helper_destroy (&icon_helper);
gtk_style_context_restore (context); gtk_style_context_restore (context);
} }