diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-04-15 14:50:33 +0000 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-04-15 14:50:33 +0000 |
commit | 24d90866b4867e9490813cc5b495bf478c49d920 (patch) | |
tree | 05d1346b7b0787a30bd2beaffdff6c1f7e0ea961 /src/greeter-list.vala | |
parent | 5274b888c0d43535aa51d5a1746dccfe9dc7db31 (diff) | |
download | arctica-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/greeter-list.vala')
-rw-r--r-- | src/greeter-list.vala | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/greeter-list.vala b/src/greeter-list.vala index 5f830da..3ec5385 100644 --- a/src/greeter-list.vala +++ b/src/greeter-list.vala @@ -102,9 +102,9 @@ public abstract class GreeterList : FadableBox } protected Mode mode = Mode.ENTRY; - public static const int BORDER = 4; - public static const int BOX_WIDTH = 8; /* in grid_size blocks */ - public static const int DEFAULT_BOX_HEIGHT = 3; /* in grid_size blocks */ + public const int BORDER = 4; + public const int BOX_WIDTH = 8; /* in grid_size blocks */ + public const int DEFAULT_BOX_HEIGHT = 3; /* in grid_size blocks */ private uint n_above = 4; private uint n_below = 4; |