aboutsummaryrefslogtreecommitdiff
path: root/src/animate-timer.vala
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-04-15 14:50:33 +0000
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-04-15 14:50:33 +0000
commit24d90866b4867e9490813cc5b495bf478c49d920 (patch)
tree05d1346b7b0787a30bd2beaffdff6c1f7e0ea961 /src/animate-timer.vala
parent5274b888c0d43535aa51d5a1746dccfe9dc7db31 (diff)
downloadarctica-greeter-24d90866b4867e9490813cc5b495bf478c49d920.tar.gz
arctica-greeter-24d90866b4867e9490813cc5b495bf478c49d920.tar.bz2
arctica-greeter-24d90866b4867e9490813cc5b495bf478c49d920.zip
vala: Replace all 'static const' declaration by 'const'.
Diffstat (limited to 'src/animate-timer.vala')
-rw-r--r--src/animate-timer.vala8
1 files changed, 4 insertions, 4 deletions
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; }