From 24d90866b4867e9490813cc5b495bf478c49d920 Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Sat, 15 Apr 2017 14:50:33 +0000 Subject: vala: Replace all 'static const' declaration by 'const'. --- src/animate-timer.vala | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/animate-timer.vala') diff --git a/src/animate-timer.vala b/src/animate-timer.vala index d5aaf71..e4abab3 100644 --- a/src/animate-timer.vala +++ b/src/animate-timer.vala @@ -24,10 +24,10 @@ private class AnimateTimer : Object public delegate double EasingFunc (double x); /* The following are the same intervals that Unity uses */ - public static const int INSTANT = 150; /* Good for animations that don't convey any information */ - public static const int FAST = 250; /* Good for animations that convey duplicated information */ - public static const int NORMAL = 500; - public static const int SLOW = 1000; /* Good for animations that convey information that is only presented in the animation */ + public const int INSTANT = 150; /* Good for animations that don't convey any information */ + public const int FAST = 250; /* Good for animations that convey duplicated information */ + public const int NORMAL = 500; + public const int SLOW = 1000; /* Good for animations that convey information that is only presented in the animation */ /* speed is in milliseconds */ public unowned EasingFunc easing_func { get; private set; } -- cgit v1.2.3