diff options
author | monsta <[email protected]> | 2016-01-15 11:59:08 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2016-01-15 12:14:33 +0300 |
commit | ecefd0b3006c7a76e750270bfdd4f22ad3075900 (patch) | |
tree | 96c092926f6eae5646f288536b3fa399ac454514 /capplets/about-me/mate-about-me.c | |
parent | 546a147cde461d161f613d1a3f28b8daee7f6574 (diff) | |
download | mate-control-center-ecefd0b3006c7a76e750270bfdd4f22ad3075900.tar.bz2 mate-control-center-ecefd0b3006c7a76e750270bfdd4f22ad3075900.tar.xz |
about-me: use gtk_image_new_from_icon_name in both GTK+ builds
Diffstat (limited to 'capplets/about-me/mate-about-me.c')
-rw-r--r-- | capplets/about-me/mate-about-me.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/capplets/about-me/mate-about-me.c b/capplets/about-me/mate-about-me.c index 0d4607fd..68a3f8bb 100644 --- a/capplets/about-me/mate-about-me.c +++ b/capplets/about-me/mate-about-me.c @@ -243,8 +243,8 @@ about_me_update_preview (GtkFileChooser *chooser, gtk_image_set_from_pixbuf (GTK_IMAGE (image), pixbuf); g_object_unref (pixbuf); } else { - gtk_image_set_from_stock (GTK_IMAGE (image), - "gtk-dialog-question", + gtk_image_set_from_icon_name (GTK_IMAGE (image), + "dialog-question", GTK_ICON_SIZE_DIALOG); } } |