aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/comp-editor.c
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@gnome-db.org>2011-09-22 00:12:01 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-09-22 00:12:01 +0800
commit1684805a0f3ef063b49098ec3a4a47a59b4d244d (patch)
tree3f47eb3ee90b977d34e2386719faead3ce2acbd7 /calendar/gui/dialogs/comp-editor.c
parentc27e999441069bf9b2a5994e9bde6313e9839cb0 (diff)
downloadgsoc2013-evolution-1684805a0f3ef063b49098ec3a4a47a59b4d244d.tar
gsoc2013-evolution-1684805a0f3ef063b49098ec3a4a47a59b4d244d.tar.gz
gsoc2013-evolution-1684805a0f3ef063b49098ec3a4a47a59b4d244d.tar.bz2
gsoc2013-evolution-1684805a0f3ef063b49098ec3a4a47a59b4d244d.tar.lz
gsoc2013-evolution-1684805a0f3ef063b49098ec3a4a47a59b4d244d.tar.xz
gsoc2013-evolution-1684805a0f3ef063b49098ec3a4a47a59b4d244d.tar.zst
gsoc2013-evolution-1684805a0f3ef063b49098ec3a4a47a59b4d244d.zip
Add missing argument to g_settings_bind
Diffstat (limited to 'calendar/gui/dialogs/comp-editor.c')
-rw-r--r--calendar/gui/dialogs/comp-editor.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c
index 75a4766e9d..eaf779df33 100644
--- a/calendar/gui/dialogs/comp-editor.c
+++ b/calendar/gui/dialogs/comp-editor.c
@@ -1644,22 +1644,22 @@ comp_editor_bind_settings (CompEditor *editor)
g_return_if_fail (editor != NULL);
action = comp_editor_get_action (editor, "view-categories");
- g_settings_bind (priv->calendar_settings, "editor-show-categories", G_OBJECT (action), "active");
+ g_settings_bind (priv->calendar_settings, "editor-show-categories", G_OBJECT (action), "active", G_SETTINGS_BIND_DEFAULT);
action = comp_editor_get_action (editor, "view-role");
- g_settings_bind (priv->calendar_settings, "editor-show-role", G_OBJECT (action), "active");
+ g_settings_bind (priv->calendar_settings, "editor-show-role", G_OBJECT (action), "active", G_SETTINGS_BIND_DEFAULT);
action = comp_editor_get_action (editor, "view-rsvp");
- g_settings_bind (priv->calendar_settings, "editor-show-rsvp", G_OBJECT (action), "active");
+ g_settings_bind (priv->calendar_settings, "editor-show-rsvp", G_OBJECT (action), "active", G_SETTINGS_BIND_DEFAULT);
action = comp_editor_get_action (editor, "view-status");
- g_settings_bind (priv->calendar_settings, "editor-show-status", G_OBJECT (action), "active");
+ g_settings_bind (priv->calendar_settings, "editor-show-status", G_OBJECT (action), "active", G_SETTINGS_BIND_DEFAULT);
action = comp_editor_get_action (editor, "view-time-zone");
- g_settings_bind (priv->calendar_settings, "editor-show-timezone", G_OBJECT (action), "active");
+ g_settings_bind (priv->calendar_settings, "editor-show-timezone", G_OBJECT (action), "active", G_SETTINGS_BIND_DEFAULT);
action = comp_editor_get_action (editor, "view-type");
- g_settings_bind (priv->calendar_settings, "editor-show-type", G_OBJECT (action), "active");
+ g_settings_bind (priv->calendar_settings, "editor-show-type", G_OBJECT (action), "active", G_SETTINGS_BIND_DEFAULT);
}
static gboolean