summaryrefslogtreecommitdiff
path: root/gtk/gtkcssanimatedstyle.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2017-10-31 04:31:46 +0100
committerBenjamin Otte <otte@redhat.com>2017-10-31 04:33:54 +0100
commit83fb7a649f07fc989ff149036b17698f7dee18c4 (patch)
tree772d5c0ac1a4ee7054cef63e6f675fdbeebc081f /gtk/gtkcssanimatedstyle.c
parentc8986e66ce482714f4ce2adf3c24dd53cca27bbe (diff)
downloadgtk+-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/gtkcssanimatedstyle.c')
-rw-r--r--gtk/gtkcssanimatedstyle.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/gtk/gtkcssanimatedstyle.c b/gtk/gtkcssanimatedstyle.c
index aadaf97173..6325007bb6 100644
--- a/gtk/gtkcssanimatedstyle.c
+++ b/gtk/gtkcssanimatedstyle.c
@@ -324,12 +324,12 @@ gtk_css_animated_style_find_animation (GSList *animations,
}
static GSList *
-gtk_css_animated_style_create_css_animations (GSList *animations,
- GtkCssStyle *base_style,
- GtkCssStyle *parent_style,
- gint64 timestamp,
- GtkStyleProviderPrivate *provider,
- GtkCssStyle *source)
+gtk_css_animated_style_create_css_animations (GSList *animations,
+ GtkCssStyle *base_style,
+ GtkCssStyle *parent_style,
+ gint64 timestamp,
+ GtkStyleProvider *provider,
+ GtkCssStyle *source)
{
GtkCssValue *durations, *delays, *timing_functions, *animation_names;
GtkCssValue *iteration_counts, *directions, *play_states, *fill_modes;
@@ -369,7 +369,7 @@ gtk_css_animated_style_create_css_animations (GSList *animation
}
else
{
- keyframes = _gtk_style_provider_private_get_keyframes (provider, name);
+ keyframes = gtk_style_provider_get_keyframes (provider, name);
if (keyframes == NULL)
continue;
@@ -410,11 +410,11 @@ gtk_css_animated_style_apply_animations (GtkCssAnimatedStyle *style)
}
GtkCssStyle *
-gtk_css_animated_style_new (GtkCssStyle *base_style,
- GtkCssStyle *parent_style,
- gint64 timestamp,
- GtkStyleProviderPrivate *provider,
- GtkCssStyle *previous_style)
+gtk_css_animated_style_new (GtkCssStyle *base_style,
+ GtkCssStyle *parent_style,
+ gint64 timestamp,
+ GtkStyleProvider *provider,
+ GtkCssStyle *previous_style)
{
GtkCssAnimatedStyle *result;
GSList *animations;