diff options
author | Carlos Garnacho <carlosg@gnome.org> | 2014-03-07 02:48:07 +0100 |
---|---|---|
committer | Carlos Garnacho <carlosg@gnome.org> | 2014-03-07 02:50:27 +0100 |
commit | dc26dfd0c22039c37bb3dc95b4a2bead28ecd165 (patch) | |
tree | 5d5b1e86dc61ca0ade2d0f4e3bbb97136f519b2d /tests/testcalendar.c | |
parent | efb4f2db504662ed926168befb3e6492b9b0604d (diff) | |
download | gtk+-dc26dfd0c22039c37bb3dc95b4a2bead28ecd165.tar.gz |
tests: fix testcalendar
Missing argument in gtk_style_context_get(), fooled by varargs.
Diffstat (limited to 'tests/testcalendar.c')
-rw-r--r-- | tests/testcalendar.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/testcalendar.c b/tests/testcalendar.c index 84de5ec139..86386d7afe 100644 --- a/tests/testcalendar.c +++ b/tests/testcalendar.c @@ -476,7 +476,8 @@ create_calendar(void) size = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL); context = gtk_widget_get_style_context (calendar); - gtk_style_context_get (context, GTK_STATE_FLAG_NORMAL, &font_desc, NULL); + gtk_style_context_get (context, GTK_STATE_FLAG_NORMAL, + GTK_STYLE_PROPERTY_FONT, &font_desc, NULL); font = pango_font_description_to_string (font_desc); button = gtk_font_button_new_with_font (font); g_free (font); |