diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2010-11-24 15:50:08 +0100 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2010-11-24 15:50:08 +0100 |
commit | 783b36398e3c7dd90605996c510faaffc6d250fe (patch) | |
tree | 7fc0f6223c6491dd0e330b838f329e32882af5b1 /tests/testappchooser.c | |
parent | 067b4ccb331e0e69f177e92f299444e8392ab39f (diff) | |
download | gtk+-783b36398e3c7dd90605996c510faaffc6d250fe.tar.gz |
tests: remove radio mode from the test
Diffstat (limited to 'tests/testappchooser.c')
-rw-r--r-- | tests/testappchooser.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/tests/testappchooser.c b/tests/testappchooser.c index 400b8e232f..3653bdaa3d 100644 --- a/tests/testappchooser.c +++ b/tests/testappchooser.c @@ -28,7 +28,7 @@ static GFile *file; static GtkWidget *grid, *file_l, *open; static GtkWidget *radio_file, *radio_content, *dialog; static GtkWidget *app_chooser_widget; -static GtkWidget *recommended, *fallback, *other, *all, *radio; +static GtkWidget *recommended, *fallback, *other, *all; static void dialog_response (GtkDialog *d, @@ -68,9 +68,6 @@ bind_props (void) g_object_bind_property (all, "active", app_chooser_widget, "show-all", G_BINDING_SYNC_CREATE); - g_object_bind_property (radio, "active", - app_chooser_widget, "radio-mode", - G_BINDING_SYNC_CREATE); } static void @@ -209,10 +206,6 @@ main (int argc, gtk_grid_attach_next_to (GTK_GRID (grid), all, other, GTK_POS_RIGHT, 1, 1); - radio = gtk_check_button_new_with_label ("Radio mode"); - gtk_grid_attach_next_to (GTK_GRID (grid), radio, - all, GTK_POS_BOTTOM, 1, 1); - prepare_dialog (); g_signal_connect (open, "clicked", G_CALLBACK (display_dialog), NULL); |