diff options
author | Alexander Larsson <alexl@redhat.com> | 2020-01-30 10:52:09 +0100 |
---|---|---|
committer | Alexander Larsson <alexl@redhat.com> | 2020-01-30 10:53:43 +0100 |
commit | 27799ba4f5a15cd3a63be371f94688a4c89bfd9f (patch) | |
tree | 979410bd9ae836296590c921bcaa7e7d6b4e87fc /gtk/gtkmountoperation.c | |
parent | 2ec51b7010fb1fe7d220e8214567aff015db7a36 (diff) | |
download | gtk+-27799ba4f5a15cd3a63be371f94688a4c89bfd9f.tar.gz |
Remove final references to "icon info" with just "icon"
Diffstat (limited to 'gtk/gtkmountoperation.c')
-rw-r--r-- | gtk/gtkmountoperation.c | 8 |
1 files changed, 4 insertions, 4 deletions
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 ("<b>%s</b>\n" |