diff options
author | Benjamin Otte <otte@redhat.com> | 2014-12-15 02:54:35 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2015-01-07 14:26:47 +0100 |
commit | 682abc345fe197b915af6efcbf572d303e8b05e7 (patch) | |
tree | 21e04bd2f24cd30ba04eba949adb19e10da67aa4 /gtk/gtkcssanimatedstyle.c | |
parent | 980923c761a7f38197817cfa9168e8b78f1a73ac (diff) | |
download | gtk+-682abc345fe197b915af6efcbf572d303e8b05e7.tar.gz |
cssanimatedstyle: Remove unused function
Diffstat (limited to 'gtk/gtkcssanimatedstyle.c')
-rw-r--r-- | gtk/gtkcssanimatedstyle.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/gtk/gtkcssanimatedstyle.c b/gtk/gtkcssanimatedstyle.c index 44e2a3f8df..b663c18baf 100644 --- a/gtk/gtkcssanimatedstyle.c +++ b/gtk/gtkcssanimatedstyle.c @@ -479,19 +479,3 @@ gtk_css_animated_style_is_static (GtkCssAnimatedStyle *style) return TRUE; } - -void -gtk_css_animated_style_cancel_animations (GtkCssAnimatedStyle *style) -{ - gtk_internal_return_if_fail (GTK_IS_CSS_ANIMATED_STYLE (style)); - - if (style->animated_values) - { - g_ptr_array_unref (style->animated_values); - style->animated_values = NULL; - } - - g_slist_free_full (style->animations, g_object_unref); - style->animations = NULL; -} - |