From 7c148bebef5805104a350b370f7da82d42ed915a Mon Sep 17 00:00:00 2001 From: Alexander Mikhaylenko Date: Mon, 11 May 2020 18:55:15 +0500 Subject: tests: Remove use-popover from testmenubutton The corresponding property doesn't exist anymore. --- tests/testmenubutton.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/testmenubutton.c b/tests/testmenubutton.c index 7ef5eaa4b0..814efcd74b 100644 --- a/tests/testmenubutton.c +++ b/tests/testmenubutton.c @@ -38,7 +38,6 @@ int main (int argc, char **argv) GtkWidget *grid; GtkWidget *entry; GtkWidget *label; - GtkWidget *check; GtkWidget *combo; guint i; guint row = 0; @@ -97,10 +96,6 @@ int main (int argc, char **argv) gtk_grid_attach_next_to (GTK_GRID (grid), button, entry, GTK_POS_RIGHT, 1, 1); menubuttons = g_list_prepend (menubuttons, button); - check = gtk_check_button_new_with_label ("Popover"); - gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (check), TRUE); - gtk_grid_attach (GTK_GRID (grid), check, 0, row, 1, 1); - /* Button with GMenuModel */ menu = g_menu_new (); for (i = 5; i > 0; i--) { @@ -116,7 +111,6 @@ int main (int argc, char **argv) } button = gtk_menu_button_new (); - g_object_bind_property (check, "active", button, "use-popover", G_BINDING_SYNC_CREATE); gtk_widget_set_halign (button, GTK_ALIGN_START); menubuttons = g_list_prepend (menubuttons, button); -- cgit v1.2.1