summaryrefslogtreecommitdiff
path: root/calendar/backends/http
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2012-10-20 17:04:04 -0400
committerMatthew Barnes <mbarnes@redhat.com>2012-10-20 20:15:59 -0400
commit3b43980362e7ff442595391f5903133f41bf340a (patch)
treea204c3ae3d3ba351e9e4c77ab19be5ca02a81cfb /calendar/backends/http
parent37465da9b35a49f06994c0797ceada7b741f718f (diff)
downloadevolution-data-server-3b43980362e7ff442595391f5903133f41bf340a.tar.gz
Coding style and whitespace cleanup.
Diffstat (limited to 'calendar/backends/http')
-rw-r--r--calendar/backends/http/e-cal-backend-http.c47
1 files changed, 27 insertions, 20 deletions
diff --git a/calendar/backends/http/e-cal-backend-http.c b/calendar/backends/http/e-cal-backend-http.c
index dd54f4356..20bcdd336 100644
--- a/calendar/backends/http/e-cal-backend-http.c
+++ b/calendar/backends/http/e-cal-backend-http.c
@@ -391,9 +391,10 @@ put_component_to_store (ECalBackendHttp *cb,
return FALSE;
}
- e_cal_util_get_component_occur_times (comp, &time_start, &time_end,
- resolve_tzid, cb, icaltimezone_get_utc_timezone (),
- e_cal_backend_get_kind (E_CAL_BACKEND (cb)));
+ e_cal_util_get_component_occur_times (
+ comp, &time_start, &time_end,
+ resolve_tzid, cb, icaltimezone_get_utc_timezone (),
+ e_cal_backend_get_kind (E_CAL_BACKEND (cb)));
e_cal_backend_store_put_component_with_time_range (priv->store, comp, time_start, time_end);
@@ -887,7 +888,8 @@ e_cal_backend_http_open (ECalBackendSync *backend,
_("Could not create cache file")));
e_cal_backend_notify_opened (
E_CAL_BACKEND (backend),
- EDC_ERROR_EX (OtherError,
+ EDC_ERROR_EX (
+ OtherError,
_("Could not create cache file")));
return;
}
@@ -1076,9 +1078,10 @@ e_cal_backend_http_get_object_list (ECalBackendSync *backend,
cbsexp = e_cal_backend_sexp_new (sexp);
*objects = NULL;
- prunning_by_time = e_cal_backend_sexp_evaluate_occur_times (cbsexp,
- &occur_start,
- &occur_end);
+ prunning_by_time = e_cal_backend_sexp_evaluate_occur_times (
+ cbsexp,
+ &occur_start,
+ &occur_end);
components = prunning_by_time ?
e_cal_backend_store_get_components_occuring_in_range (priv->store, occur_start, occur_end)
@@ -1123,9 +1126,10 @@ e_cal_backend_http_start_view (ECalBackend *backend,
/* process all components in the cache */
objects = NULL;
- prunning_by_time = e_cal_backend_sexp_evaluate_occur_times (cbsexp,
- &occur_start,
- &occur_end);
+ prunning_by_time = e_cal_backend_sexp_evaluate_occur_times (
+ cbsexp,
+ &occur_start,
+ &occur_end);
components = prunning_by_time ?
e_cal_backend_store_get_components_occuring_in_range (priv->store, occur_start, occur_end)
@@ -1230,8 +1234,9 @@ create_user_free_busy (ECalBackendHttp *cbhttp,
/* add all objects in the given interval */
iso_start = isodate_from_time_t (start);
iso_end = isodate_from_time_t (end);
- query = g_strdup_printf ("occur-in-time-range? (make-time \"%s\") (make-time \"%s\")",
- iso_start, iso_end);
+ query = g_strdup_printf (
+ "occur-in-time-range? (make-time \"%s\") (make-time \"%s\")",
+ iso_start, iso_end);
obj_sexp = e_cal_backend_sexp_new (query);
g_free (query);
g_free (iso_start);
@@ -1252,8 +1257,9 @@ create_user_free_busy (ECalBackendHttp *cbhttp,
continue;
/* If the event is TRANSPARENT, skip it. */
- prop = icalcomponent_get_first_property (icalcomp,
- ICAL_TRANSP_PROPERTY);
+ prop = icalcomponent_get_first_property (
+ icalcomp,
+ ICAL_TRANSP_PROPERTY);
if (prop) {
icalproperty_transp transp_val = icalproperty_get_transp (prop);
if (transp_val == ICAL_TRANSP_TRANSPARENT ||
@@ -1267,12 +1273,13 @@ create_user_free_busy (ECalBackendHttp *cbhttp,
vcalendar_comp = icalcomponent_get_parent (icalcomp);
if (!vcalendar_comp)
vcalendar_comp = icalcomp;
- e_cal_recur_generate_instances (comp, start, end,
- free_busy_instance,
- vfb,
- resolve_tzid,
- vcalendar_comp,
- icaltimezone_get_utc_timezone ());
+ e_cal_recur_generate_instances (
+ comp, start, end,
+ free_busy_instance,
+ vfb,
+ resolve_tzid,
+ vcalendar_comp,
+ icaltimezone_get_utc_timezone ());
}
g_object_unref (obj_sexp);