[gtk+/gtk-2-90] Declare random item correctly in stresstest-toolbar



commit 864d694f03fde2c16634101c0bf01d65a8c03ca6
Author: Christian Dywan <christian twotoasts de>
Date:   Fri Apr 23 18:07:21 2010 +0200

    Declare random item correctly in stresstest-toolbar

 tests/stresstest-toolbar.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/tests/stresstest-toolbar.c b/tests/stresstest-toolbar.c
index 7267981..539e6de 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



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]