diff options
author | Benjamin Otte <otte@redhat.com> | 2017-01-20 02:02:44 +0100 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2017-11-15 14:22:16 -0500 |
commit | 8df61992d78208eb403240cc53cdbdefcfef1e2e (patch) | |
tree | 339d23dc4968b072f976bd3bc3927dfce9994563 /tests/testtooltips.c | |
parent | 129dc7d73b3fa3bc3c1fcd023c6504ad903eb9df (diff) | |
download | gtk+-8df61992d78208eb403240cc53cdbdefcfef1e2e.tar.gz |
tooltips: Remove GtkIconSize usage
Diffstat (limited to 'tests/testtooltips.c')
-rw-r--r-- | tests/testtooltips.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/testtooltips.c b/tests/testtooltips.c index 50345535fc..25485acfbb 100644 --- a/tests/testtooltips.c +++ b/tests/testtooltips.c @@ -64,8 +64,7 @@ query_tooltip_cb (GtkWidget *widget, gpointer data) { gtk_tooltip_set_markup (tooltip, gtk_button_get_label (GTK_BUTTON (widget))); - gtk_tooltip_set_icon_from_icon_name (tooltip, "edit-delete", - GTK_ICON_SIZE_MENU); + gtk_tooltip_set_icon_from_icon_name (tooltip, "edit-delete"); return TRUE; } |