diff options
author | Benjamin Otte <otte@redhat.com> | 2017-10-31 04:31:46 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2017-10-31 04:33:54 +0100 |
commit | 83fb7a649f07fc989ff149036b17698f7dee18c4 (patch) | |
tree | 772d5c0ac1a4ee7054cef63e6f675fdbeebc081f /gtk/gtkcssiconthemevalue.c | |
parent | c8986e66ce482714f4ce2adf3c24dd53cca27bbe (diff) | |
download | gtk+-83fb7a649f07fc989ff149036b17698f7dee18c4.tar.gz |
css: Merge GtkStyleProviderPrivate into GtkStyleProvider
This is just lots of renaming.
The interface remains private, so the public API does not change, apart
from removing the definition of the Interface object to avoid
subclassing.
Diffstat (limited to 'gtk/gtkcssiconthemevalue.c')
-rw-r--r-- | gtk/gtkcssiconthemevalue.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk/gtkcssiconthemevalue.c b/gtk/gtkcssiconthemevalue.c index c9c7f904cd..a417b43da7 100644 --- a/gtk/gtkcssiconthemevalue.c +++ b/gtk/gtkcssiconthemevalue.c @@ -70,18 +70,18 @@ gtk_css_value_icon_theme_free (GtkCssValue *value) } static GtkCssValue * -gtk_css_value_icon_theme_compute (GtkCssValue *icon_theme, - guint property_id, - GtkStyleProviderPrivate *provider, - GtkCssStyle *style, - GtkCssStyle *parent_style) +gtk_css_value_icon_theme_compute (GtkCssValue *icon_theme, + guint property_id, + GtkStyleProvider *provider, + GtkCssStyle *style, + GtkCssStyle *parent_style) { GtkIconTheme *icontheme; if (icon_theme->icontheme) icontheme = icon_theme->icontheme; else - icontheme = gtk_icon_theme_get_for_display (_gtk_settings_get_display (_gtk_style_provider_private_get_settings (provider))); + icontheme = gtk_icon_theme_get_for_display (_gtk_settings_get_display (gtk_style_provider_get_settings (provider))); return gtk_css_icon_theme_value_new (icontheme); } |