diff options
Diffstat (limited to 'client/src/settings.vala')
-rw-r--r-- | client/src/settings.vala | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/client/src/settings.vala b/client/src/settings.vala deleted file mode 100644 index 17177232..00000000 --- a/client/src/settings.vala +++ /dev/null @@ -1,28 +0,0 @@ -namespace Dino { - -public class Settings { - - private GLib.Settings gsettings; - - public bool send_read { - get { return gsettings.get_boolean("send-read"); } - set { gsettings.set_boolean("send-read", value); } - } - - public bool convert_utf8_smileys { - get { return gsettings.get_boolean("convert-utf8-smileys"); } - set { gsettings.set_boolean("convert-utf8-smileys", value); } - } - - public Settings(GLib.Settings gsettings) { - this.gsettings = gsettings; - } - - public static Settings instance() { - SettingsSchemaSource sss = SettingsSchemaSource.get_default(); - SettingsSchema schema = sss.lookup("org.dino-im", false); - return new Settings(new GLib.Settings.full(schema, null, null)); - } -} - -}
\ No newline at end of file |