summaryrefslogtreecommitdiff
path: root/gtk/gtkaboutdialog.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2018-03-13 20:04:21 +0100
committerBenjamin Otte <otte@redhat.com>2018-03-16 06:04:43 +0100
commit45072c3a64a4a993c839438ffcf15d0444fc2621 (patch)
tree70470f26c0ccc6a5f0f9f800d0fd66d943168229 /gtk/gtkaboutdialog.c
parenta891a3ae2602b9dc1d78bd6761a37c4289f1e912 (diff)
downloadgtk+-45072c3a64a4a993c839438ffcf15d0444fc2621.tar.gz
aboutdialog: The default icons are textures these days
Diffstat (limited to 'gtk/gtkaboutdialog.c')
-rw-r--r--gtk/gtkaboutdialog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkaboutdialog.c b/gtk/gtkaboutdialog.c
index e3fdb5d742..b1d4c29113 100644
--- a/gtk/gtkaboutdialog.c
+++ b/gtk/gtkaboutdialog.c
@@ -1878,7 +1878,7 @@ gtk_about_dialog_set_logo_icon_name (GtkAboutDialog *about,
}
else if ((icons = gtk_window_get_default_icon_list ()))
{
- gtk_image_set_from_surface (GTK_IMAGE (priv->logo_image), icons->data);
+ gtk_image_set_from_texture (GTK_IMAGE (priv->logo_image), icons->data);
g_list_free (icons);
}
else