[gtk+/wip/watson/progress-tracker: 186/191] animatedstyle: rename function



commit 6c853dfd85cb9c0966732718acc2386d0812b435
Author: Matt Watson <mattdangerw gmail com>
Date:   Tue Mar 22 01:10:21 2016 -0700

    animatedstyle: rename function
    
    For clarity

 gtk/gtkcssanimatedstyle.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/gtk/gtkcssanimatedstyle.c b/gtk/gtkcssanimatedstyle.c
index e4fc34c..87e5147 100644
--- a/gtk/gtkcssanimatedstyle.c
+++ b/gtk/gtkcssanimatedstyle.c
@@ -396,7 +396,7 @@ gtk_css_animated_style_create_css_animations (GSList                  *animation
 /* PUBLIC API */
 
 static void
-gtk_css_animated_style_apply_animations (GtkCssAnimatedStyle *style,
+gtk_css_animated_style_advance_animations (GtkCssAnimatedStyle *style,
                                          gint64               timestamp)
 {
   GSList *l;
@@ -444,7 +444,7 @@ gtk_css_animated_style_new (GtkCssStyle             *base_style,
   result->current_time = timestamp;
   result->animations = animations;
 
-  gtk_css_animated_style_apply_animations (result, timestamp);
+  gtk_css_animated_style_advance_animations (result, timestamp);
 
   return GTK_CSS_STYLE (result);
 }
@@ -486,7 +486,7 @@ gtk_css_animated_style_new_advance (GtkCssAnimatedStyle *source,
   result->current_time = timestamp;
   result->animations = animations;
 
-  gtk_css_animated_style_apply_animations (result, timestamp);
+  gtk_css_animated_style_advance_animations (result, timestamp);
 
   return GTK_CSS_STYLE (result);
 }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]