From 765882ce9a938075a278270c8965811340061bbf Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Fri, 23 Apr 2010 18:07:21 +0200 Subject: [PATCH] Declare random item correctly in stresstest-toolbar --- tests/stresstest-toolbar.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/stresstest-toolbar.c b/tests/stresstest-toolbar.c index 7267981d8f..539e6de83b 100644 --- a/tests/stresstest-toolbar.c +++ b/tests/stresstest-toolbar.c @@ -35,18 +35,18 @@ add_random (GtkToolbar *toolbar, gint n) gint position; gchar *label = g_strdup_printf ("Button %d", n); - GtkWidget *widget = gtk_tool_button_new (NULL, label); - gtk_tool_item_set_tooltip_text (GTK_TOOL_ITEM (widget), "Bar"); + GtkToolItem *toolitem = gtk_tool_button_new (NULL, label); + gtk_tool_item_set_tooltip_text (toolitem, "Bar"); g_free (label); - gtk_widget_show_all (widget); + gtk_widget_show_all (GTK_WIDGET (toolitem)); if (g_list_length (toolbar->children) == 0) position = 0; else position = g_random_int_range (0, g_list_length (toolbar->children)); - gtk_toolbar_insert (toolbar, widget, position); + gtk_toolbar_insert (toolbar, toolitem, position); } static void