From eb29179da623f9cf4abd663577395a085452ca18 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Sun, 11 Jul 2010 11:31:15 -0400 Subject: Coding style and whitespace cleanup. --- plugins/publish-calendar/publish-location.c | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'plugins/publish-calendar/publish-location.c') diff --git a/plugins/publish-calendar/publish-location.c b/plugins/publish-calendar/publish-location.c index 98a8247725..d22bc4fa47 100644 --- a/plugins/publish-calendar/publish-location.c +++ b/plugins/publish-calendar/publish-location.c @@ -40,7 +40,9 @@ migrateURI (const gchar *xml, xmlDocPtr doc) EUri *euri; client = gconf_client_get_default (); - uris = gconf_client_get_list (client, "/apps/evolution/calendar/publish/uris", GCONF_VALUE_STRING, NULL); + uris = gconf_client_get_list ( + client, "/apps/evolution/calendar/publish/uris", + GCONF_VALUE_STRING, NULL); l = uris; while (l && l->data) { gchar *str = l->data; @@ -100,7 +102,9 @@ migrateURI (const gchar *xml, xmlDocPtr doc) uri->events = events; uris = g_slist_prepend (uris, e_publish_uri_to_xml (uri)); - gconf_client_set_list (client, "/apps/evolution/calendar/publish/uris", GCONF_VALUE_STRING, uris, NULL); + gconf_client_set_list ( + client, "/apps/evolution/calendar/publish/uris", + GCONF_VALUE_STRING, uris, NULL); g_slist_foreach (uris, (GFunc) g_free, NULL); g_slist_free (uris); g_object_unref (client); @@ -236,7 +240,8 @@ e_publish_uri_to_xml (EPublishUri *uri) else xmlSetProp (root, (xmlChar *)"fb_duration_type", (xmlChar *)"weeks"); - for (calendars = uri->events; calendars != NULL; calendars = g_slist_next (calendars)) { + for (calendars = uri->events; calendars != NULL; + calendars = g_slist_next (calendars)) { xmlNodePtr node; node = xmlNewChild (root, NULL, (const guchar *)"event", NULL); xmlSetProp (node, (const guchar *)"uid", calendars->data); -- cgit