diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2012-04-22 02:52:23 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2012-04-22 05:07:15 +0800 |
commit | 7950d6a0c6efd6c4d48afd99c138f38952bdd1bb (patch) | |
tree | 3a8fd7957dd29441120d2db18ccb1cc23f5935f2 /mail/em-account-editor.c | |
parent | 397b15ff4aa5afd1d5c7e0a093a33616624401cf (diff) | |
download | gsoc2013-evolution-7950d6a0c6efd6c4d48afd99c138f38952bdd1bb.tar.gz gsoc2013-evolution-7950d6a0c6efd6c4d48afd99c138f38952bdd1bb.tar.zst gsoc2013-evolution-7950d6a0c6efd6c4d48afd99c138f38952bdd1bb.zip |
Adapt to libedataserver[ui] changes.
Diffstat (limited to 'mail/em-account-editor.c')
-rw-r--r-- | mail/em-account-editor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/em-account-editor.c b/mail/em-account-editor.c index 74a3d5bc92..a84691e48b 100644 --- a/mail/em-account-editor.c +++ b/mail/em-account-editor.c @@ -5411,7 +5411,7 @@ setup_google_calendar (EMAccountEditor *emae) array = g_ptr_array_new (); for (i = 0; ids[i] != NULL; i++) g_ptr_array_add (array, ids[i]); - g_ptr_array_add (array, (gpointer) e_source_peek_uid (calendar)); + g_ptr_array_add (array, (gpointer) e_source_get_uid (calendar)); g_ptr_array_add (array, NULL); g_settings_set_strv ( settings, SELECTED_CALENDARS, @@ -5483,7 +5483,7 @@ setup_yahoo_calendar (EMAccountEditor *emae) array = g_ptr_array_new (); for (i = 0; ids[i] != NULL; i++) g_ptr_array_add (array, ids[i]); - g_ptr_array_add (array, (gpointer) e_source_peek_uid (calendar)); + g_ptr_array_add (array, (gpointer) e_source_get_uid (calendar)); g_ptr_array_add (array, NULL); g_settings_set_strv ( settings, SELECTED_CALENDARS, |