diff options
author | Benjamin Otte <otte@redhat.com> | 2017-10-31 02:35:21 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2017-10-31 03:05:54 +0100 |
commit | 9151e0b9f521060a7792a0e73ea0a8f3e77a0f89 (patch) | |
tree | 3ed40b25b874495b5f31ecfa91bb0859ff168a97 /tests/testheaderbar.c | |
parent | a2e625692e25aa97277dd05670a2e9c49c07b3ee (diff) | |
download | gtk+-9151e0b9f521060a7792a0e73ea0a8f3e77a0f89.tar.gz |
stylecontext: Port to use display instead of screen
Diffstat (limited to 'tests/testheaderbar.c')
-rw-r--r-- | tests/testheaderbar.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/testheaderbar.c b/tests/testheaderbar.c index 0165ca7d89..7735c1b638 100644 --- a/tests/testheaderbar.c +++ b/tests/testheaderbar.c @@ -136,9 +136,9 @@ main (int argc, char *argv[]) provider = gtk_css_provider_new (); gtk_css_provider_load_from_data (provider, css, -1); - gtk_style_context_add_provider_for_screen (gtk_widget_get_screen (window), - GTK_STYLE_PROVIDER (provider), - GTK_STYLE_PROVIDER_PRIORITY_USER); + gtk_style_context_add_provider_for_display (gtk_widget_get_display (window), + GTK_STYLE_PROVIDER (provider), + GTK_STYLE_PROVIDER_PRIORITY_USER); change_header (NULL, window); |