From 27799ba4f5a15cd3a63be371f94688a4c89bfd9f Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Thu, 30 Jan 2020 10:52:09 +0100 Subject: Remove final references to "icon info" with just "icon" --- gtk/gtkmountoperation.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gtk/gtkmountoperation.c') diff --git a/gtk/gtkmountoperation.c b/gtk/gtkmountoperation.c index b23734d0bf..20e61d0831 100644 --- a/gtk/gtkmountoperation.c +++ b/gtk/gtkmountoperation.c @@ -1169,14 +1169,14 @@ add_pid_to_process_list_store (GtkMountOperation *mount_operation, if (texture == NULL) { GtkIconTheme *theme; - GtkIcon *info; + GtkIcon *icon; theme = gtk_css_icon_theme_value_get_icon_theme (_gtk_style_context_peek_property (gtk_widget_get_style_context (GTK_WIDGET (mount_operation->priv->dialog)), GTK_CSS_PROPERTY_ICON_THEME)); - info = gtk_icon_theme_lookup_icon (theme, "application-x-executable", 24, 1, 0); - texture = gtk_icon_download_texture (info, NULL); - g_object_unref (info); + icon = gtk_icon_theme_lookup_icon (theme, "application-x-executable", 24, 1, 0); + texture = gtk_icon_download_texture (icon, NULL); + g_object_unref (icon); } markup = g_strdup_printf ("%s\n" -- cgit v1.2.1