summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTimm Bäder <mail@baedert.org>2016-10-22 17:25:57 +0200
committerTimm Bäder <mail@baedert.org>2016-10-22 19:08:29 +0200
commitd18891233839db96478d8765425c9e390fa9c7ef (patch)
tree002e9ea574b65d20ac3081f0d535b7a4d82e7547 /tests
parent66430e683cf0cf59ca05eb4a0f4392104f4cb6e6 (diff)
downloadgtk+-d18891233839db96478d8765425c9e390fa9c7ef.tar.gz
icontheme: Remove deprecated API
Diffstat (limited to 'tests')
-rw-r--r--tests/testicontheme.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/testicontheme.c b/tests/testicontheme.c
index 0413135da5..e7f10dff24 100644
--- a/tests/testicontheme.c
+++ b/tests/testicontheme.c
@@ -208,10 +208,8 @@ main (int argc, char *argv[])
scale = atoi (argv[5]);
icon_info = gtk_icon_theme_lookup_icon_for_scale (icon_theme, argv[3], size, scale, flags);
-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) ? "<builtin>" : gtk_icon_info_get_filename (icon_info)) : "<none>");
-G_GNUC_END_IGNORE_DEPRECATIONS
+ icon_info ? gtk_icon_info_get_filename (icon_info) : "<none>");
if (icon_info)
{