summaryrefslogtreecommitdiff
path: root/katze/katze-arrayaction.c
diff options
context:
space:
mode:
authorChristian Dywan <christian@twotoasts.de>2009-11-16 23:46:03 +0100
committerChristian Dywan <christian@twotoasts.de>2009-11-16 23:46:03 +0100
commitd6561051bf338272979a22547f5433e0ac1011d3 (patch)
tree4983442901a10d477b8b033d712ab75d5f0fa7a2 /katze/katze-arrayaction.c
parenta40207f256284ba494dcf8d84419adf7b3f26b64 (diff)
downloadmidori-d6561051bf338272979a22547f5433e0ac1011d3.tar.gz
Set tool button labels to "" to avoid a regression in GTK+
Diffstat (limited to 'katze/katze-arrayaction.c')
-rw-r--r--katze/katze-arrayaction.c4
1 files 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))