EDataCal: Remove OP_SET_BACKEND_PROPERTY.
authorMatthew Barnes <mbarnes@redhat.com>
Sat, 26 Jan 2013 14:42:25 +0000 (09:42 -0500)
committerMatthew Barnes <mbarnes@redhat.com>
Sat, 26 Jan 2013 14:54:57 +0000 (09:54 -0500)
No longer used.

calendar/libedata-cal/e-data-cal.c

index 86e3ee1..1c267ab 100644 (file)
@@ -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,