diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-01-13 02:47:22 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-01-13 03:15:57 +0800 |
commit | a55f24dfb39129dd268ce79250834733433b1921 (patch) | |
tree | ba6fd23457c355af6faa4c5eab193a9906a8dd0d /modules | |
parent | 27ac2039018d174e3f906fa8b74f4af9c37f5d53 (diff) | |
download | gsoc2013-evolution-a55f24dfb39129dd268ce79250834733433b1921.tar gsoc2013-evolution-a55f24dfb39129dd268ce79250834733433b1921.tar.gz gsoc2013-evolution-a55f24dfb39129dd268ce79250834733433b1921.tar.bz2 gsoc2013-evolution-a55f24dfb39129dd268ce79250834733433b1921.tar.lz gsoc2013-evolution-a55f24dfb39129dd268ce79250834733433b1921.tar.xz gsoc2013-evolution-a55f24dfb39129dd268ce79250834733433b1921.tar.zst gsoc2013-evolution-a55f24dfb39129dd268ce79250834733433b1921.zip |
Adapt to CamelSession API changes.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/cal-config-caldav/e-caldav-chooser.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/cal-config-caldav/e-caldav-chooser.c b/modules/cal-config-caldav/e-caldav-chooser.c index d5b514d301..f7de1129be 100644 --- a/modules/cal-config-caldav/e-caldav-chooser.c +++ b/modules/cal-config-caldav/e-caldav-chooser.c @@ -206,13 +206,13 @@ trust_prompt_sync (const ENamedParameters *parameters, #endif if (!asked) { - GSList *button_captions = NULL; + GList *button_captions = NULL; const gchar *markup; gchar *tmp = NULL; - button_captions = g_slist_append (button_captions, _("_Reject")); - button_captions = g_slist_append (button_captions, _("Accept _Temporarily")); - button_captions = g_slist_append (button_captions, _("_Accept Permanently")); + button_captions = g_list_append (button_captions, _("_Reject")); + button_captions = g_list_append (button_captions, _("Accept _Temporarily")); + button_captions = g_list_append (button_captions, _("_Accept Permanently")); markup = e_named_parameters_get (parameters, "markup"); if (!markup) { @@ -233,7 +233,7 @@ trust_prompt_sync (const ENamedParameters *parameters, else if (response == 2) response = 1; - g_slist_free (button_captions); + g_list_free (button_captions); g_free (tmp); } |