summaryrefslogtreecommitdiff
path: root/tests/testoutsetshadowdrawing.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/testoutsetshadowdrawing.c
parenta9c05193a7b7366989b75471150b1f6d644e2285 (diff)
downloadgtk+-b5bacb3be640a25eb7573090df6d1af6a9adcc7e.tar.gz
Drop the margin property
Replace it with margin-start, -end, -top, -bottom throughout.
Diffstat (limited to 'tests/testoutsetshadowdrawing.c')
-rw-r--r--tests/testoutsetshadowdrawing.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/testoutsetshadowdrawing.c b/tests/testoutsetshadowdrawing.c
index 6f221375cc..3b27b9c8a1 100644
--- a/tests/testoutsetshadowdrawing.c
+++ b/tests/testoutsetshadowdrawing.c
@@ -108,7 +108,10 @@ main (int argc, char **argv)
box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 120);
top = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 120);
bottom = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 120);
- g_object_set (box, "margin", 120, NULL);
+ gtk_widget_set_margin_start (box, 120);
+ gtk_widget_set_margin_end (box, 120);
+ gtk_widget_set_margin_top (box, 120);
+ gtk_widget_set_margin_bottom (box, 120);
w = gtk_button_new ();
gtk_widget_set_valign (w, GTK_ALIGN_CENTER);