summaryrefslogtreecommitdiff
path: root/tests/testdialog.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2020-02-25 20:57:20 -0500
committerMatthias Clasen <mclasen@redhat.com>2020-02-25 20:59:04 -0500
commitb5bacb3be640a25eb7573090df6d1af6a9adcc7e (patch)
tree4bb50d67d3952387b5a9f99f63db68f5e95f58ba /tests/testdialog.c
parenta9c05193a7b7366989b75471150b1f6d644e2285 (diff)
downloadgtk+-b5bacb3be640a25eb7573090df6d1af6a9adcc7e.tar.gz
Drop the margin property
Replace it with margin-start, -end, -top, -bottom throughout.
Diffstat (limited to 'tests/testdialog.c')
-rw-r--r--tests/testdialog.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/testdialog.c b/tests/testdialog.c
index c627f73f2d..d53874e3b6 100644
--- a/tests/testdialog.c
+++ b/tests/testdialog.c
@@ -95,7 +95,10 @@ add_content (GtkWidget *dialog)
GtkWidget *label;
label = gtk_label_new ("content");
- g_object_set (label, "margin", 50, NULL);
+ gtk_widget_set_margin_start (label, 50);
+ gtk_widget_set_margin_end (label, 50);
+ gtk_widget_set_margin_top (label, 50);
+ gtk_widget_set_margin_bottom (label, 50);
gtk_widget_show (label);
gtk_container_add (GTK_CONTAINER (gtk_dialog_get_content_area (GTK_DIALOG (dialog))), label);