diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-07-11 23:31:15 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-07-12 10:25:06 +0800 |
commit | eb29179da623f9cf4abd663577395a085452ca18 (patch) | |
tree | a7eec4690f254d4cb9048ca87a5e7f401a2e74ae /plugins/publish-calendar | |
parent | beb8e74577f695d0d3c2efea52dc10c2136f0135 (diff) | |
download | gsoc2013-evolution-eb29179da623f9cf4abd663577395a085452ca18.tar.gz gsoc2013-evolution-eb29179da623f9cf4abd663577395a085452ca18.tar.zst gsoc2013-evolution-eb29179da623f9cf4abd663577395a085452ca18.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'plugins/publish-calendar')
-rw-r--r-- | plugins/publish-calendar/publish-location.c | 11 |
1 files changed, 8 insertions, 3 deletions
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); |