mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
Declare random item correctly in stresstest-toolbar
This commit is contained in:
parent
b4188f876f
commit
765882ce9a
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user