From 46462ee7c4b82dab7662eb14d55aa318ac6eba31 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Thu, 10 Jul 2014 14:23:54 +0200 Subject: [PATCH] tests: Add deprecation guards ... for newly deprecated gtk_icon_info_get_builtin_pixbuf() --- tests/testicontheme.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/testicontheme.c b/tests/testicontheme.c index 47c0e4b298..216a398a96 100644 --- a/tests/testicontheme.c +++ b/tests/testicontheme.c @@ -202,8 +202,10 @@ main (int argc, char *argv[]) scale = atoi (argv[5]); icon_info = gtk_icon_theme_lookup_icon_for_scale (icon_theme, argv[3], size, scale, GTK_ICON_LOOKUP_USE_BUILTIN); +G_GNUC_BEGIN_IGNORE_DEPRECATIONS g_print ("icon for %s at %dx%d@%dx is %s\n", argv[3], size, size, scale, icon_info ? (gtk_icon_info_get_builtin_pixbuf (icon_info) ? "" : gtk_icon_info_get_filename (icon_info)) : ""); +G_GNUC_END_IGNORE_DEPRECATIONS if (icon_info) {