[evolution-data-server] EDataCal: Remove OP_SET_BACKEND_PROPERTY.
- From: Matthew Barnes <mbarnes src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution-data-server] EDataCal: Remove OP_SET_BACKEND_PROPERTY.
- Date: Sat, 26 Jan 2013 15:19:42 +0000 (UTC)
commit 0215391c6c486e663a75a872baeda904ca759e16
Author: Matthew Barnes <mbarnes redhat com>
Date: Sat Jan 26 09:42:25 2013 -0500
EDataCal: Remove OP_SET_BACKEND_PROPERTY.
No longer used.
calendar/libedata-cal/e-data-cal.c | 18 ------------------
1 files changed, 0 insertions(+), 18 deletions(-)
---
diff --git a/calendar/libedata-cal/e-data-cal.c b/calendar/libedata-cal/e-data-cal.c
index 86e3ee1..1c267ab 100644
--- a/calendar/libedata-cal/e-data-cal.c
+++ b/calendar/libedata-cal/e-data-cal.c
@@ -73,7 +73,6 @@ typedef enum {
OP_OPEN,
OP_REFRESH,
OP_GET_BACKEND_PROPERTY,
- OP_SET_BACKEND_PROPERTY,
OP_GET_OBJECT,
OP_GET_OBJECT_LIST,
OP_GET_FREE_BUSY,
@@ -149,11 +148,6 @@ typedef struct {
guint opid;
/* OP_GET_BACKEND_PROPERTY */
gchar *prop_name;
- /* OP_SET_BACKEND_PROPERTY */
- struct _sbp {
- gchar *prop_name;
- gchar *prop_value;
- } sbp;
/* OP_REFRESH */
/* OP_CANCEL_ALL */
@@ -272,10 +266,6 @@ op_unref (OperationData *data)
case OP_GET_BACKEND_PROPERTY:
g_free (data->d.prop_name);
break;
- case OP_SET_BACKEND_PROPERTY:
- g_free (data->d.sbp.prop_name);
- g_free (data->d.sbp.prop_value);
- break;
default:
break;
}
@@ -352,14 +342,6 @@ operation_thread (gpointer data,
op->cancellable, op->d.prop_name);
break;
- case OP_SET_BACKEND_PROPERTY:
- e_cal_backend_set_backend_property (
- backend, op->cal, op->id,
- op->cancellable,
- op->d.sbp.prop_name,
- op->d.sbp.prop_value);
- break;
-
case OP_GET_OBJECT:
e_cal_backend_get_object (
backend, op->cal, op->id,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]