aboutsummaryrefslogtreecommitdiff
path: root/src/settings.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/settings.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/settings.vala')
-rw-r--r--src/settings.vala52
1 files changed, 26 insertions, 26 deletions
diff --git a/src/settings.vala b/src/settings.vala
index e7e424d..8ffc239 100644
--- a/src/settings.vala
+++ b/src/settings.vala
@@ -20,31 +20,31 @@
public class AGSettings
{
- public static const string KEY_BACKGROUND = "background";
- public static const string KEY_BACKGROUND_COLOR = "background-color";
- public static const string KEY_DRAW_USER_BACKGROUNDS = "draw-user-backgrounds";
- public static const string KEY_DRAW_GRID = "draw-grid";
- public static const string KEY_SHOW_HOSTNAME = "show-hostname";
- public static const string KEY_LOGO = "logo";
- public static const string KEY_BACKGROUND_LOGO = "background-logo";
- public static const string KEY_THEME_NAME = "theme-name";
- public static const string KEY_ICON_THEME_NAME = "icon-theme-name";
- public static const string KEY_FONT_NAME = "font-name";
- public static const string KEY_XFT_ANTIALIAS = "xft-antialias";
- public static const string KEY_XFT_DPI = "xft-dpi";
- public static const string KEY_XFT_HINTSTYLE = "xft-hintstyle";
- public static const string KEY_XFT_RGBA = "xft-rgba";
- public static const string KEY_ONSCREEN_KEYBOARD = "onscreen-keyboard";
- public static const string KEY_HIGH_CONTRAST = "high-contrast";
- public static const string KEY_SCREEN_READER = "screen-reader";
- public static const string KEY_PLAY_READY_SOUND = "play-ready-sound";
- public static const string KEY_INDICATORS = "indicators";
- public static const string KEY_HIDDEN_USERS = "hidden-users";
- public static const string KEY_GROUP_FILTER = "group-filter";
- public static const string KEY_IDLE_TIMEOUT = "idle-timeout";
- public static const string KEY_REMOTE_SERVICE_FQDN = "remote-service-fqdn";
- public static const string KEY_TOGGLEBOX_FONT_FGCOLOR = "togglebox-font-fgcolor";
- public static const string KEY_TOGGLEBOX_BUTTON_BGCOLOR = "togglebox-button-bgcolor";
+ public const string KEY_BACKGROUND = "background";
+ public const string KEY_BACKGROUND_COLOR = "background-color";
+ public const string KEY_DRAW_USER_BACKGROUNDS = "draw-user-backgrounds";
+ public const string KEY_DRAW_GRID = "draw-grid";
+ public const string KEY_SHOW_HOSTNAME = "show-hostname";
+ public const string KEY_LOGO = "logo";
+ public const string KEY_BACKGROUND_LOGO = "background-logo";
+ public const string KEY_THEME_NAME = "theme-name";
+ public const string KEY_ICON_THEME_NAME = "icon-theme-name";
+ public const string KEY_FONT_NAME = "font-name";
+ public const string KEY_XFT_ANTIALIAS = "xft-antialias";
+ public const string KEY_XFT_DPI = "xft-dpi";
+ public const string KEY_XFT_HINTSTYLE = "xft-hintstyle";
+ public const string KEY_XFT_RGBA = "xft-rgba";
+ public const string KEY_ONSCREEN_KEYBOARD = "onscreen-keyboard";
+ public const string KEY_HIGH_CONTRAST = "high-contrast";
+ public const string KEY_SCREEN_READER = "screen-reader";
+ public const string KEY_PLAY_READY_SOUND = "play-ready-sound";
+ public const string KEY_INDICATORS = "indicators";
+ public const string KEY_HIDDEN_USERS = "hidden-users";
+ public const string KEY_GROUP_FILTER = "group-filter";
+ public const string KEY_IDLE_TIMEOUT = "idle-timeout";
+ public const string KEY_REMOTE_SERVICE_FQDN = "remote-service-fqdn";
+ public const string KEY_TOGGLEBOX_FONT_FGCOLOR = "togglebox-font-fgcolor";
+ public const string KEY_TOGGLEBOX_BUTTON_BGCOLOR = "togglebox-button-bgcolor";
public static bool get_boolean (string key)
{
@@ -101,5 +101,5 @@ public class AGSettings
return gsettings.set_strv (key, value);
}
- private static const string SCHEMA = "org.ArcticaProject.arctica-greeter";
+ private const string SCHEMA = "org.ArcticaProject.arctica-greeter";
}