diff options
author | Benjamin Otte <otte@redhat.com> | 2016-10-09 02:32:00 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2016-10-16 18:18:58 +0200 |
commit | 4df6ddad54d2cb6ebfdcbf2b6fee35ec4fa760b9 (patch) | |
tree | 0d6d46d38a70de6930e51d279c0eb50265a0a203 /tests/testselection.c | |
parent | 1518fe0a8f0a973f013e21c185f38111d69d6ac7 (diff) | |
download | gtk+-4df6ddad54d2cb6ebfdcbf2b6fee35ec4fa760b9.tar.gz |
API: container: Remove gtk_container_set_border_width()
Diffstat (limited to 'tests/testselection.c')
-rw-r--r-- | tests/testselection.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/testselection.c b/tests/testselection.c index 3fb0756baf..7176985590 100644 --- a/tests/testselection.c +++ b/tests/testselection.c @@ -410,7 +410,6 @@ main (int argc, char *argv[]) dialog = gtk_dialog_new (); gtk_widget_set_name (dialog, "Test Input"); - gtk_container_set_border_width (GTK_CONTAINER(dialog), 0); g_signal_connect (dialog, "destroy", G_CALLBACK (quit), NULL); @@ -418,7 +417,6 @@ main (int argc, char *argv[]) content_area = gtk_dialog_get_content_area (GTK_DIALOG (dialog)); vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 2); - gtk_container_set_border_width (GTK_CONTAINER (vbox), 10); gtk_box_pack_start (GTK_BOX (content_area), vbox, TRUE, TRUE); gtk_widget_show (vbox); |