From: Matthias Clasen Date: Thu, 17 Oct 2019 21:21:45 +0000 (-0500) Subject: testicontheme: Remove useless function X-Git-Tag: archive/raspbian/4.4.1+ds1-2+rpi1^2~18^2~20^2~696^2~10 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=dbbb7eef15f7c23aed3cb828c5bcec221c0faee6;p=gtk4.git testicontheme: Remove useless function Contexts in icon themes are not useful for anything, so drop this function from testicontheme. --- diff --git a/tests/testicontheme.c b/tests/testicontheme.c index 18bb84ec8b..8b3d462864 100644 --- a/tests/testicontheme.c +++ b/tests/testicontheme.c @@ -29,8 +29,6 @@ usage (void) "usage: test-icon-theme list [context]\n" " or\n" "usage: test-icon-theme display [size] [scale]\n" - " or\n" - "usage: test-icon-theme contexts \n" ); } @@ -174,16 +172,6 @@ main (int argc, char *argv[]) list = gtk_icon_theme_list_icons (icon_theme, context); - while (list) - { - g_print ("%s\n", (char *)list->data); - list = list->next; - } - } - else if (strcmp (argv[1], "contexts") == 0) - { - list = gtk_icon_theme_list_contexts (icon_theme); - while (list) { g_print ("%s\n", (char *)list->data);