diff options
author | Benjamin Otte <otte@redhat.com> | 2016-10-17 16:09:12 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2016-10-17 16:52:05 +0200 |
commit | dbeeaf7de681d3471b73f5722dd94451d66af642 (patch) | |
tree | ae0930302e7caf3740ef26673eb79622f000435c /tests/testiconview-keynav.c | |
parent | 55e599c5617177878b44a49400f23c6ffcd4200b (diff) | |
download | gtk+-dbeeaf7de681d3471b73f5722dd94451d66af642.tar.gz |
cssprovider: Remove GError out argument from load functions
People should use the GtkCssProvider::parsing-error signal instead.
Diffstat (limited to 'tests/testiconview-keynav.c')
-rw-r--r-- | tests/testiconview-keynav.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testiconview-keynav.c b/tests/testiconview-keynav.c index 31253639b9..f38c4535e6 100644 --- a/tests/testiconview-keynav.c +++ b/tests/testiconview-keynav.c @@ -220,7 +220,7 @@ set_styles (void) provider = gtk_css_provider_new (); - if (!gtk_css_provider_load_from_data (provider, CSS, -1, NULL)) + if (!gtk_css_provider_load_from_data (provider, CSS, -1)) { g_assert_not_reached (); } |