1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-09-29 15:25:24 +00:00

settings: Add GSettings bindings

This commit is contained in:
Evangelos Ribeiro Tzaras 2021-09-23 08:33:41 +02:00
parent 6477446a29
commit 04d391c5dd

View file

@ -117,6 +117,10 @@ calls_settings_constructed (GObject *object)
g_settings_bind (self->settings, "auto-use-default-origins", g_settings_bind (self->settings, "auto-use-default-origins",
self, "auto-use-default-origins", G_SETTINGS_BIND_DEFAULT); self, "auto-use-default-origins", G_SETTINGS_BIND_DEFAULT);
g_settings_bind (self->settings, "country-code",
self, "country-code", G_SETTINGS_BIND_DEFAULT);
g_settings_bind (self->settings, "autoload-plugins",
self, "autoload-plugins", G_SETTINGS_BIND_DEFAULT);
G_OBJECT_CLASS (calls_settings_parent_class)->constructed (object); G_OBJECT_CLASS (calls_settings_parent_class)->constructed (object);
} }