summaryrefslogtreecommitdiff
path: root/tests/testframe.c
diff options
context:
space:
mode:
authorTimm Bäder <mail@baedert.org>2016-10-27 14:04:44 +0200
committerTimm Bäder <mail@baedert.org>2016-10-28 16:33:02 +0200
commit90b133bb5064945bf038ed071f85352b24a6dcde (patch)
tree98225c2ad2d4dedd48c92e8869a88049bfc36f90 /tests/testframe.c
parent8c128f36c5b6135d5aedc52acbf34dd628af39ef (diff)
downloadgtk+-90b133bb5064945bf038ed071f85352b24a6dcde.tar.gz
testframe: Fix css element name
Diffstat (limited to 'tests/testframe.c')
-rw-r--r--tests/testframe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testframe.c b/tests/testframe.c
index 9fc2f9037d..ea241b4c3b 100644
--- a/tests/testframe.c
+++ b/tests/testframe.c
@@ -44,7 +44,7 @@ spin_ythickness_cb (GtkSpinButton *spin, gpointer user_data)
gtk_style_context_restore (context);
- data = g_strdup_printf ("GtkFrame { padding: %dpx %dpx }",
+ data = g_strdup_printf ("frame { padding: %dpx %dpx }",
pad.top,
(gint)gtk_spin_button_get_value (spin));
@@ -80,7 +80,7 @@ spin_xthickness_cb (GtkSpinButton *spin, gpointer user_data)
gtk_style_context_restore (context);
- data = g_strdup_printf ("GtkFrame { padding: %dpx %dpx }",
+ data = g_strdup_printf ("frame { padding: %dpx %dpx }",
(gint)gtk_spin_button_get_value (spin),
pad.left);