summaryrefslogtreecommitdiff
path: root/tests/testrevealer.c
diff options
context:
space:
mode:
authorYosef Or Boczko <yoseforb@gmail.com>2013-11-15 00:31:17 +0200
committerBenjamin Otte <otte@redhat.com>2013-11-15 02:54:35 +0100
commit719dd636a9da679ea08a9644a8cccfe7d6f145d7 (patch)
treec2f286045adef34ab40824375a70b44e33e8dcba /tests/testrevealer.c
parent9921bec63a3e67e2c2e38ca734590909a9f734b5 (diff)
downloadgtk+-719dd636a9da679ea08a9644a8cccfe7d6f145d7.tar.gz
Replace all margin-left and margin-right with margin-start and margin-end
https://bugzilla.gnome.org/show_bug.cgi?id=710238
Diffstat (limited to 'tests/testrevealer.c')
-rw-r--r--tests/testrevealer.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/testrevealer.c b/tests/testrevealer.c
index 3eab9cd0f3..2de4c576b9 100644
--- a/tests/testrevealer.c
+++ b/tests/testrevealer.c
@@ -17,15 +17,15 @@ main (gint argc,
widget = gtk_label_new ("Some filler text to avoid\nresizing of the window");
gtk_widget_set_margin_top (widget, 10);
gtk_widget_set_margin_bottom (widget, 10);
- gtk_widget_set_margin_left (widget, 10);
- gtk_widget_set_margin_right (widget, 10);
+ gtk_widget_set_margin_start (widget, 10);
+ gtk_widget_set_margin_end (widget, 10);
gtk_grid_attach (GTK_GRID (box), widget, 1, 1, 1, 1);
widget = gtk_label_new ("Some filler text to avoid\nresizing of the window");
gtk_widget_set_margin_top (widget, 10);
gtk_widget_set_margin_bottom (widget, 10);
- gtk_widget_set_margin_left (widget, 10);
- gtk_widget_set_margin_right (widget, 10);
+ gtk_widget_set_margin_start (widget, 10);
+ gtk_widget_set_margin_end (widget, 10);
gtk_grid_attach (GTK_GRID (box), widget, 3, 3, 1, 1);
widget = gtk_toggle_button_new_with_label ("None");