diff options
author | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-09-21 23:15:07 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-09-21 23:15:07 +0800 |
commit | d757ba352a135a81cfb2e638b25d66998dbe1eb9 (patch) | |
tree | e0fa4b362ae4b4f0b75669a24e509b9f35143761 /modules/calendar/e-cal-shell-backend.c | |
parent | b9a43c056c67bc343748fbd7c1b5385a6457014a (diff) | |
download | gsoc2013-evolution-d757ba352a135a81cfb2e638b25d66998dbe1eb9.tar.gz gsoc2013-evolution-d757ba352a135a81cfb2e638b25d66998dbe1eb9.tar.zst gsoc2013-evolution-d757ba352a135a81cfb2e638b25d66998dbe1eb9.zip |
Port EMemoShellBackend to GSettings
Diffstat (limited to 'modules/calendar/e-cal-shell-backend.c')
-rw-r--r-- | modules/calendar/e-cal-shell-backend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/calendar/e-cal-shell-backend.c b/modules/calendar/e-cal-shell-backend.c index 2a1edb96d2..36af9fd827 100644 --- a/modules/calendar/e-cal-shell-backend.c +++ b/modules/calendar/e-cal-shell-backend.c @@ -910,7 +910,7 @@ e_cal_shell_backend_get_selected_calendars (ECalShellBackend *cal_shell_backend) E_IS_CAL_SHELL_BACKEND (cal_shell_backend), NULL); settings = g_settings_new ("org.gnome.evolution.calendar"); - selected_calendars = g_settings_get_strv (settings, "selected-calendars"); + strv = g_settings_get_strv (settings, "selected-calendars"); g_object_unref (settings); if (strv != NULL) { |