From 7d3b68d797ad3676f4debac73704b21d390d54dc Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Mon, 16 Nov 2009 23:46:03 +0100 Subject: [PATCH] Set tool button labels to "" to avoid a regression in GTK+ --- katze/katze-arrayaction.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/katze/katze-arrayaction.c b/katze/katze-arrayaction.c index 1fb6b925..f0422dda 100644 --- a/katze/katze-arrayaction.c +++ b/katze/katze-arrayaction.c @@ -399,7 +399,7 @@ katze_array_action_create_tool_item (GtkAction* action) { GtkWidget* toolitem; - toolitem = GTK_WIDGET (gtk_tool_button_new (NULL, NULL)); + toolitem = GTK_WIDGET (gtk_tool_button_new (NULL, "")); return toolitem; } @@ -552,7 +552,7 @@ katze_array_action_create_tool_item_for (KatzeArrayAction* array_action, if (!KATZE_IS_ARRAY (item) && !uri) return gtk_separator_tool_item_new (); - toolitem = gtk_tool_button_new (NULL, NULL); + toolitem = gtk_tool_button_new (NULL, ""); g_signal_connect (toolitem, "create-menu-proxy", G_CALLBACK (katze_array_action_proxy_create_menu_proxy_cb), item); if (KATZE_IS_ARRAY (item))