[evolution-data-server] libedata-cal: Remove all deprecated backend APIs.
- From: Matthew Barnes <mbarnes src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution-data-server] libedata-cal: Remove all deprecated backend APIs.
- Date: Fri, 22 Mar 2013 12:22:23 +0000 (UTC)
commit 09341e629278f98c48751dba42008d5a22bd7b5d
Author: Matthew Barnes <mbarnes redhat com>
Date: Fri Mar 22 07:50:56 2013 -0400
libedata-cal: Remove all deprecated backend APIs.
Clean the slate for the next round of changes.
All known 3rd party backends have been accounted for (ews/mapi/kolab),
so this should cause no disruption.
calendar/libedata-cal/e-cal-backend-sync.c | 35 ---
calendar/libedata-cal/e-cal-backend-sync.h | 10 -
calendar/libedata-cal/e-cal-backend.c | 222 --------------------
calendar/libedata-cal/e-cal-backend.h | 53 -----
calendar/libedata-cal/e-data-cal-view.c | 135 ------------
calendar/libedata-cal/e-data-cal-view.h | 15 --
calendar/libedata-cal/e-data-cal.c | 117 ----------
calendar/libedata-cal/e-data-cal.h | 15 --
.../libedata-cal/libedata-cal-sections.txt | 25 ---
9 files changed, 0 insertions(+), 627 deletions(-)
---
diff --git a/calendar/libedata-cal/e-cal-backend-sync.c b/calendar/libedata-cal/e-cal-backend-sync.c
index 64ab709..cb6fb54 100644
--- a/calendar/libedata-cal/e-cal-backend-sync.c
+++ b/calendar/libedata-cal/e-cal-backend-sync.c
@@ -150,41 +150,6 @@ e_cal_backend_sync_get_backend_property (ECalBackendSync *backend,
}
/**
- * e_cal_backend_sync_set_backend_property:
- * @backend: An ECalBackendSync object.
- * @cal: An EDataCal object.
- * @cancellable: a #GCancellable for the operation
- * @prop_name: Property name to set.
- * @prop_value: New value of the @prop_name.
- * @error: Out parameter for a #GError.
- *
- * Calls the set_backend_property_sync method on the given backend.
- *
- * Returns whether processed this property. Returning FALSE means to pass
- * the call to the ECalBackend parent class, thus neither @error should be
- * set in this case.
- *
- * Since: 3.2
- *
- * Deprecated: 3.8: This function always returns %FALSE and sets an
- * %UnsupportedMethod error.
- **/
-gboolean
-e_cal_backend_sync_set_backend_property (ECalBackendSync *backend,
- EDataCal *cal,
- GCancellable *cancellable,
- const gchar *prop_name,
- const gchar *prop_value,
- GError **error)
-{
- g_set_error_literal (
- error, E_DATA_CAL_ERROR, UnsupportedMethod,
- _("Clients cannot set backend properties"));
-
- return FALSE;
-}
-
-/**
* e_cal_backend_sync_get_object:
* @backend: An ECalBackendSync object.
* @cal: An EDataCal object.
diff --git a/calendar/libedata-cal/e-cal-backend-sync.h b/calendar/libedata-cal/e-cal-backend-sync.h
index 3970e32..79cd8a0 100644
--- a/calendar/libedata-cal/e-cal-backend-sync.h
+++ b/calendar/libedata-cal/e-cal-backend-sync.h
@@ -264,16 +264,6 @@ void e_cal_backend_sync_add_timezone (ECalBackendSync *backend,
const gchar *tzobject,
GError **error);
-#ifndef EDS_DISABLE_DEPRECATED
-gboolean e_cal_backend_sync_set_backend_property
- (ECalBackendSync *backend,
- EDataCal *cal,
- GCancellable *cancellable,
- const gchar *prop_name,
- const gchar *prop_value,
- GError **error);
-#endif /* EDS_DISABLE_DEPRECATED */
-
G_END_DECLS
#endif /* E_CAL_BACKEND_SYNC_H */
diff --git a/calendar/libedata-cal/e-cal-backend.c b/calendar/libedata-cal/e-cal-backend.c
index b42cd38..99d9eb4 100644
--- a/calendar/libedata-cal/e-cal-backend.c
+++ b/calendar/libedata-cal/e-cal-backend.c
@@ -818,32 +818,6 @@ e_cal_backend_is_opened (ECalBackend *backend)
}
/**
- * e_cal_backend_is_opening:
- * @backend: an #ECalBackend
- *
- * Checks if @backend is processing its opening phase, which
- * includes everything since the e_cal_backend_open() call,
- * through authentication, up to e_cal_backend_notify_opened().
- * This property is managed automatically and the backend deny
- * every operation except of cancel and authenticate_user while
- * it is being opening.
- *
- * Returns: %FALSE always
- *
- * Since: 3.2
- *
- * Deprecated: 3.8: This function is no longer relevant,
- * and always returns %FALSE.
- **/
-gboolean
-e_cal_backend_is_opening (ECalBackend *backend)
-{
- g_return_val_if_fail (E_IS_CAL_BACKEND (backend), FALSE);
-
- return FALSE;
-}
-
-/**
* e_cal_backend_is_readonly:
* @backend: an #ECalBackend
*
@@ -1001,67 +975,6 @@ e_cal_backend_get_backend_property (ECalBackend *backend,
}
/**
- * e_cal_backend_set_backend_property:
- * @backend: an #ECalBackend
- * @cal: an #EDataCal
- * @opid: the ID to use for this operation
- * @cancellable: a #GCancellable for the operation
- * @prop_name: property name to change; cannot be NULL
- * @prop_value: value to set to @prop_name; cannot be NULL
- *
- * Calls the set_backend_property method on the given backend.
- * This might be finished with e_data_cal_respond_set_backend_property().
- * Default implementation simply returns an 'unsupported' error.
- * The subclass may always call this default implementation for properties
- * which fetching it doesn't overwrite.
- *
- * Since: 3.2
- *
- * Deprecated: 3.8: This function no longer does anything.
- **/
-void
-e_cal_backend_set_backend_property (ECalBackend *backend,
- EDataCal *cal,
- guint32 opid,
- GCancellable *cancellable,
- const gchar *prop_name,
- const gchar *prop_value)
-{
- /* Do nothing. */
-}
-
-/**
- * e_cal_backend_add_client:
- * @backend: an #ECalBackend
- * @cal: an #EDataCal
- *
- * Adds a new client to the given backend. For any event, the backend will
- * notify all clients added via this function.
- *
- * Deprecated: 3.10: This function no longer does anything.
- */
-void
-e_cal_backend_add_client (ECalBackend *backend,
- EDataCal *cal)
-{
-}
-
-/**
- * e_cal_backend_remove_client:
- * @backend: an #ECalBackend
- * @cal: an #EDataCal
- *
- * Removes a client from the list of connected clients to the given backend.
- *
- * Deprecated: 3.10: This function no longer does anything.
- */
-void
-e_cal_backend_remove_client (ECalBackend *backend,
- EDataCal *cal)
-{
-}
-
-/**
* e_cal_backend_add_view:
* @backend: an #ECalBackend
* @view: An #EDataCalView object.
@@ -1149,40 +1062,6 @@ e_cal_backend_list_views (ECalBackend *backend)
}
/**
- * e_cal_backend_foreach_view:
- * @backend: an #ECalBackend
- * @callback: callback to call
- * @user_data: user_data passed into the @callback
- *
- * Calls @callback for each known calendar view of this @backend.
- * @callback returns %FALSE to stop further processing.
- *
- * Since: 3.2
- *
- * Deprecated: 3.8: Use e_cal_backend_list_views() instead.
- **/
-void
-e_cal_backend_foreach_view (ECalBackend *backend,
- gboolean (*callback) (EDataCalView *view,
- gpointer user_data),
- gpointer user_data)
-{
- GList *list, *link;
-
- g_return_if_fail (E_IS_CAL_BACKEND (backend));
- g_return_if_fail (callback != NULL);
-
- list = e_cal_backend_list_views (backend);
-
- for (link = list; link != NULL; link = g_list_next (link)) {
- if (!callback (E_DATA_CAL_VIEW (link->data), user_data))
- break;
- }
-
- g_list_free_full (list, (GDestroyNotify) g_object_unref);
-}
-
-/**
* e_cal_backend_set_notification_proxy:
* @backend: an #ECalBackend
* @proxy: The calendar backend to act as notification proxy.
@@ -1928,75 +1807,6 @@ e_cal_backend_notify_error (ECalBackend *backend,
}
/**
- * e_cal_backend_notify_readonly:
- * @backend: an #ECalBackend
- * @is_readonly: flag indicating readonly status
- *
- * Notifies all backend's clients about the current readonly state.
- * Meant to be used by backend implementations.
- *
- * Deprecated: 3.8: Use e_cal_backend_set_writable() instead.
- **/
-void
-e_cal_backend_notify_readonly (ECalBackend *backend,
- gboolean is_readonly)
-{
- g_return_if_fail (E_IS_CAL_BACKEND (backend));
-
- e_cal_backend_set_writable (backend, !is_readonly);
-}
-
-/**
- * e_cal_backend_notify_online:
- * @backend: an #ECalBackend
- * @is_online: flag indicating whether @backend is connected and online
- *
- * Notifies clients of @backend's connection status indicated by @is_online.
- * Meant to be used by backend implementations.
- *
- * Since: 3.2
- *
- * Deprecated: 3.8: Use e_backend_set_online() instead.
- **/
-void
-e_cal_backend_notify_online (ECalBackend *backend,
- gboolean is_online)
-{
- g_return_if_fail (E_IS_CAL_BACKEND (backend));
-
- e_backend_set_online (E_BACKEND (backend), is_online);
-}
-
-/**
- * e_cal_backend_notify_opened:
- * @backend: an #ECalBackend
- * @error: a #GError corresponding to the error encountered during
- * the opening phase. Use %NULL for success. The @error is freed
- * automatically if not %NULL.
- *
- * Notifies clients that @backend finished its opening phase.
- * See e_cal_backend_open() for more information how the opening
- * phase works. Calling this function changes 'opening' property,
- * same as 'opened'. 'opening' is set to %FALSE and the backend
- * is considered 'opened' only if the @error is %NULL.
- *
- * See also: e_cal_backend_respond_opened()
- *
- * Note: The @error is freed automatically if not %NULL.
- *
- * Meant to be used by backend implementations.
- *
- * Since: 3.2
- *
- * Deprecated: 3.8: Use e_data_cal_respond_open() instead.
- **/
-void
-e_cal_backend_notify_opened (ECalBackend *backend,
- GError *error)
-{
-}
-
-/**
* e_cal_backend_notify_property_changed:
* @backend: an #ECalBackend
* @prop_name: property name, which changed
@@ -2027,38 +1837,6 @@ e_cal_backend_notify_property_changed (ECalBackend *backend,
}
/**
- * e_cal_backend_respond_opened:
- * @backend: an #ECalBackend
- * @cal: an #EDataCal
- * @opid: an operation ID
- * @error: result error; can be %NULL, if it isn't then it's automatically freed
- *
- * This is a replacement for e_data_cal_respond_open() for cases where
- * the finish of 'open' method call also finishes backend opening phase.
- * This function covers calling of both e_cal_backend_notify_opened() and
- * e_data_cal_respond_open() with the same @error.
- *
- * See e_cal_backend_open() for more details how the opening phase works.
- *
- * Since: 3.2
- *
- * Deprecated: 3.8: Use e_data_book_respond_open() instead.
- **/
-void
-e_cal_backend_respond_opened (ECalBackend *backend,
- EDataCal *cal,
- guint32 opid,
- GError *error)
-{
- g_return_if_fail (backend != NULL);
- g_return_if_fail (E_IS_CAL_BACKEND (backend));
- g_return_if_fail (cal != NULL);
- g_return_if_fail (opid != 0);
-
- e_data_cal_respond_open (cal, opid, error);
-}
-
-/**
* e_cal_backend_empty_cache:
* @backend: an #ECalBackend
* @cache: Backend's cache to empty.
diff --git a/calendar/libedata-cal/e-cal-backend.h b/calendar/libedata-cal/e-cal-backend.h
index 49264f3..3e44dac 100644
--- a/calendar/libedata-cal/e-cal-backend.h
+++ b/calendar/libedata-cal/e-cal-backend.h
@@ -396,59 +396,6 @@ void e_cal_backend_empty_cache (ECalBackend *backend,
void e_cal_backend_set_is_removed (ECalBackend *backend,
gboolean is_removed);
-#ifndef EDS_DISABLE_DEPRECATED
-/**
- * CLIENT_BACKEND_PROPERTY_OPENED:
- *
- * FIXME: Document me.
- *
- * Since: 3.2
- *
- * Deprecated: 3.8: Clients don't need to care if they're fully opened
- * anymore. This property will always return %TRUE.
- **/
-#define CLIENT_BACKEND_PROPERTY_OPENED "opened"
-
-/**
- * CLIENT_BACKEND_PROPERTY_OPENING:
- *
- * FIXME: Document me.
- *
- * Since: 3.2
- *
- * Deprecated: 3.8: Clients don't need to care if they're fully opened
- * anymore. This property will always return %FALSE.
- **/
-#define CLIENT_BACKEND_PROPERTY_OPENING "opening"
-
-void e_cal_backend_add_client (ECalBackend *backend,
- EDataCal *cal);
-void e_cal_backend_remove_client (ECalBackend *backend,
- EDataCal *cal);
-gboolean e_cal_backend_is_opening (ECalBackend *backend);
-void e_cal_backend_set_backend_property
- (ECalBackend *backend,
- EDataCal *cal,
- guint32 opid,
- GCancellable *cancellable,
- const gchar *prop_name,
- const gchar *prop_value);
-void e_cal_backend_foreach_view (ECalBackend *backend,
- gboolean (*callback) (EDataCalView *view,
- gpointer user_data),
- gpointer user_data);
-void e_cal_backend_notify_opened (ECalBackend *backend,
- GError *error);
-void e_cal_backend_notify_readonly (ECalBackend *backend,
- gboolean is_readonly);
-void e_cal_backend_notify_online (ECalBackend *backend,
- gboolean is_online);
-void e_cal_backend_respond_opened (ECalBackend *backend,
- EDataCal *cal,
- guint32 opid,
- GError *error);
-#endif /* EDS_DISABLE_DEPRECATED */
-
G_END_DECLS
#endif /* E_CAL_BACKEND_H */
diff --git a/calendar/libedata-cal/e-data-cal-view.c b/calendar/libedata-cal/e-data-cal-view.c
index daa8c4d..bdb55ac 100644
--- a/calendar/libedata-cal/e-data-cal-view.c
+++ b/calendar/libedata-cal/e-data-cal-view.c
@@ -704,34 +704,6 @@ ensure_pending_flush_timeout (EDataCalView *view)
}
static void
-notify_add (EDataCalView *view,
- gchar *obj)
-{
- ECalComponent *comp;
- ECalClientViewFlags flags;
-
- send_pending_changes (view);
- send_pending_removes (view);
-
- /* Do not send object add notifications during initial stage */
- flags = e_data_cal_view_get_flags (view);
- if (view->priv->complete || (flags & E_CAL_CLIENT_VIEW_FLAGS_NOTIFY_INITIAL) != 0) {
- if (view->priv->adds->len == THRESHOLD_ITEMS)
- send_pending_adds (view);
- g_array_append_val (view->priv->adds, obj);
-
- ensure_pending_flush_timeout (view);
- }
-
- comp = e_cal_component_new_from_string (obj);
- g_hash_table_insert (
- view->priv->ids,
- e_cal_component_get_id (comp),
- GUINT_TO_POINTER (1));
- g_object_unref (comp);
-}
-
-static void
notify_add_component (EDataCalView *view,
/* const */ ECalComponent *comp)
{
@@ -1302,113 +1274,6 @@ e_data_cal_view_notify_components_modified_1 (EDataCalView *view,
}
/**
- * e_data_cal_view_notify_objects_added:
- * @view: an #EDataCalView
- * @objects: List of objects that have been added.
- *
- * Notifies all view listeners of the addition of a list of objects.
- *
- * Deprecated: 3.4: If possible e_data_cal_view_notify_components_added()
- * should be used instead.
- */
-void
-e_data_cal_view_notify_objects_added (EDataCalView *view,
- const GSList *objects)
-{
- const GSList *l;
-
- g_return_if_fail (E_IS_DATA_CAL_VIEW (view));
-
- if (objects == NULL)
- return;
-
- g_mutex_lock (&view->priv->pending_mutex);
-
- for (l = objects; l; l = l->next) {
- notify_add (view, e_util_utf8_make_valid (l->data));
- }
-
- g_mutex_unlock (&view->priv->pending_mutex);
-}
-
-/**
- * e_data_cal_view_notify_objects_added_1:
- * @view: an #EDataCalView
- * @object: The object that has been added.
- *
- * Notifies all the view listeners of the addition of a single object.
- *
- * Deprecated: 3.4: If possible e_data_cal_view_notify_components_added_1()
- * should be used instead.
- */
-void
-e_data_cal_view_notify_objects_added_1 (EDataCalView *view,
- const gchar *object)
-{
- GSList l = {NULL,};
-
- g_return_if_fail (E_IS_DATA_CAL_VIEW (view));
- g_return_if_fail (object != NULL);
-
- l.data = (gpointer) object;
- e_data_cal_view_notify_objects_added (view, &l);
-}
-
-/**
- * e_data_cal_view_notify_objects_modified:
- * @view: an #EDataCalView
- * @objects: List of modified objects.
- *
- * Notifies all view listeners of the modification of a list of objects.
- *
- * Deprecated: 3.4: If possible e_data_cal_view_notify_components_modified()
- * should be used instead.
- */
-void
-e_data_cal_view_notify_objects_modified (EDataCalView *view,
- const GSList *objects)
-{
- const GSList *l;
-
- g_return_if_fail (E_IS_DATA_CAL_VIEW (view));
-
- if (objects == NULL)
- return;
-
- g_mutex_lock (&view->priv->pending_mutex);
-
- for (l = objects; l; l = l->next) {
- /* TODO: send add/remove/change as relevant, based on ->ids */
- notify_change (view, e_util_utf8_make_valid (l->data));
- }
-
- g_mutex_unlock (&view->priv->pending_mutex);
-}
-
-/**
- * e_data_cal_view_notify_objects_modified_1:
- * @view: an #EDataCalView
- * @object: The modified object.
- *
- * Notifies all view listeners of the modification of a single object.
- *
- * Deprecated: 3.4: If possible e_data_cal_view_notify_components_modified_1()
- * should be used instead.
- */
-void
-e_data_cal_view_notify_objects_modified_1 (EDataCalView *view,
- const gchar *object)
-{
- GSList l = {NULL,};
-
- g_return_if_fail (E_IS_DATA_CAL_VIEW (view));
- g_return_if_fail (object != NULL);
-
- l.data = (gpointer) object;
- e_data_cal_view_notify_objects_modified (view, &l);
-}
-
-/**
* e_data_cal_view_notify_objects_removed:
* @view: an #EDataCalView
* @ids: List of IDs for the objects that have been removed.
diff --git a/calendar/libedata-cal/e-data-cal-view.h b/calendar/libedata-cal/e-data-cal-view.h
index 7032a98..2f9f0fb 100644
--- a/calendar/libedata-cal/e-data-cal-view.h
+++ b/calendar/libedata-cal/e-data-cal-view.h
@@ -119,21 +119,6 @@ void e_data_cal_view_notify_progress (EDataCalView *view,
void e_data_cal_view_notify_complete (EDataCalView *view,
const GError *error);
-#ifndef EDS_DISABLE_DEPRECATED
-void e_data_cal_view_notify_objects_added
- (EDataCalView *view,
- const GSList *objects);
-void e_data_cal_view_notify_objects_added_1
- (EDataCalView *view,
- const gchar *object);
-void e_data_cal_view_notify_objects_modified
- (EDataCalView *view,
- const GSList *objects);
-void e_data_cal_view_notify_objects_modified_1
- (EDataCalView *view,
- const gchar *object);
-#endif /* EDS_DISABLE_DEPRECATED */
-
G_END_DECLS
#endif /* E_DATA_CAL_VIEW_H */
diff --git a/calendar/libedata-cal/e-data-cal.c b/calendar/libedata-cal/e-data-cal.c
index cec35c6..7a72331 100644
--- a/calendar/libedata-cal/e-data-cal.c
+++ b/calendar/libedata-cal/e-data-cal.c
@@ -1455,25 +1455,6 @@ e_data_cal_respond_get_backend_property (EDataCal *cal,
}
/**
- * e_data_cal_respond_set_backend_property:
- * @cal: A calendar client interface.
- * @error: Operation error, if any, automatically freed if passed it.
- *
- * Notifies listeners of the completion of the set_backend_property method call.
- *
- * Since: 3.2
- *
- * Deprecated: 3.8: This function no longer does anything.
- */
-void
-e_data_cal_respond_set_backend_property (EDataCal *cal,
- guint32 opid,
- GError *error)
-{
- /* Do nothing. */
-}
-
-/**
* e_data_cal_respond_get_object:
* @cal: A calendar client interface.
* @error: Operation error, if any, automatically freed if passed it.
@@ -2131,75 +2112,6 @@ e_data_cal_report_error (EDataCal *cal,
}
/**
- * e_data_cal_report_readonly:
- *
- * FIXME: Document me.
- *
- * Since: 3.2
- *
- * Deprecated: 3.8: Use e_cal_backend_set_writable() instead.
- **/
-void
-e_data_cal_report_readonly (EDataCal *cal,
- gboolean readonly)
-{
- ECalBackend *backend;
-
- g_return_if_fail (E_IS_DATA_CAL (cal));
-
- backend = e_data_cal_ref_backend (cal);
-
- if (backend != NULL) {
- e_cal_backend_set_writable (backend, !readonly);
- g_object_unref (backend);
- }
-}
-
-/**
- * e_data_cal_report_online:
- *
- * FIXME: Document me.
- *
- * Since: 3.2
- *
- * Deprecated: 3.8: Use e_backend_set_online() instead.
- **/
-void
-e_data_cal_report_online (EDataCal *cal,
- gboolean is_online)
-{
- ECalBackend *backend;
-
- g_return_if_fail (E_IS_DATA_CAL (cal));
-
- backend = e_data_cal_ref_backend (cal);
-
- if (backend != NULL) {
- e_backend_set_online (E_BACKEND (backend), is_online);
- g_object_unref (backend);
- }
-}
-
-/**
- * e_data_cal_report_opened:
- *
- * Reports to associated client that opening phase of the cal is finished.
- * error being NULL means successfully, otherwise reports an error which
- * happened during opening phase. By opening phase is meant a process
- * including successfull authentication to the server/storage.
- *
- * Since: 3.2
- *
- * Deprecated: 3.8: This function no longer does anything.
- **/
-void
-e_data_cal_report_opened (EDataCal *cal,
- const GError *error)
-{
- /* Do nothing. */
-}
-
-/**
* e_data_cal_report_free_busy_data:
*
* FIXME: Document me.
@@ -2686,35 +2598,6 @@ e_data_cal_ref_backend (EDataCal *cal)
}
/**
- * e_data_cal_get_backend:
- * @cal: an #EDataCal
- *
- * Returns the #ECalBackend to which incoming remote method invocations
- * are being forwarded.
- *
- * Returns: the #ECalBackend
- *
- * Deprecated: 3.10: Use e_data_cal_ref_backend() instead.
- **/
-ECalBackend *
-e_data_cal_get_backend (EDataCal *cal)
-{
- ECalBackend *backend;
-
- g_return_val_if_fail (E_IS_DATA_CAL (cal), NULL);
-
- backend = e_data_cal_ref_backend (cal);
-
- /* XXX Drop the ECalBackend reference for backwards-compatibility.
- * This is risky. Without a reference, the ECalBackend could
- * be finalized while the caller is still using it. */
- if (backend != NULL)
- g_object_unref (backend);
-
- return backend;
-}
-
-/**
* e_data_cal_get_connection:
* @cal: an #EDataCal
*
diff --git a/calendar/libedata-cal/e-data-cal.h b/calendar/libedata-cal/e-data-cal.h
index c107f31..117b96f 100644
--- a/calendar/libedata-cal/e-data-cal.h
+++ b/calendar/libedata-cal/e-data-cal.h
@@ -260,21 +260,6 @@ void e_data_cal_report_backend_property_changed
const gchar *prop_name,
const gchar *prop_value);
-#ifndef EDS_DISABLE_DEPRECATED
-struct _ECalBackend *
- e_data_cal_get_backend (EDataCal *cal);
-void e_data_cal_respond_set_backend_property
- (EDataCal *cal,
- guint32 opid,
- GError *error);
-void e_data_cal_report_opened (EDataCal *cal,
- const GError *error);
-void e_data_cal_report_readonly (EDataCal *cal,
- gboolean is_readonly);
-void e_data_cal_report_online (EDataCal *cal,
- gboolean is_online);
-#endif /* EDS_DISABLE_DEPRECATED */
-
G_END_DECLS
#endif /* E_DATA_CAL_H */
diff --git a/docs/reference/calendar/libedata-cal/libedata-cal-sections.txt
b/docs/reference/calendar/libedata-cal/libedata-cal-sections.txt
index d97c2f0..bad3f89 100644
--- a/docs/reference/calendar/libedata-cal/libedata-cal-sections.txt
+++ b/docs/reference/calendar/libedata-cal/libedata-cal-sections.txt
@@ -50,18 +50,6 @@ e_cal_backend_notify_error
e_cal_backend_notify_property_changed
e_cal_backend_empty_cache
e_cal_backend_set_is_removed
-<SUBSECTION Deprecated>
-CLIENT_BACKEND_PROPERTY_OPENED
-CLIENT_BACKEND_PROPERTY_OPENING
-e_cal_backend_add_client
-e_cal_backend_remove_client
-e_cal_backend_is_opening
-e_cal_backend_set_backend_property
-e_cal_backend_foreach_view
-e_cal_backend_notify_opened
-e_cal_backend_notify_readonly
-e_cal_backend_notify_online
-e_cal_backend_respond_opened
<SUBSECTION Standard>
E_CAL_BACKEND
E_IS_CAL_BACKEND
@@ -211,8 +199,6 @@ e_cal_backend_sync_get_attachment_uris
e_cal_backend_sync_discard_alarm
e_cal_backend_sync_get_timezone
e_cal_backend_sync_add_timezone
-<SUBSECTION Deprecated>
-e_cal_backend_sync_set_backend_property
<SUBSECTION Standard>
E_CAL_BACKEND_SYNC
E_IS_CAL_BACKEND_SYNC
@@ -268,12 +254,6 @@ e_data_cal_respond_add_timezone
e_data_cal_report_error
e_data_cal_report_free_busy_data
e_data_cal_report_backend_property_changed
-<SUBSECTION Deprecated>
-e_data_cal_get_backend
-e_data_cal_respond_set_backend_property
-e_data_cal_report_opened
-e_data_cal_report_readonly
-e_data_cal_report_online
<SUBSECTION Standard>
E_DATA_CAL
E_IS_DATA_CAL
@@ -348,11 +328,6 @@ e_data_cal_view_notify_objects_removed
e_data_cal_view_notify_objects_removed_1
e_data_cal_view_notify_progress
e_data_cal_view_notify_complete
-<SUBSECTION Deprecated>
-e_data_cal_view_notify_objects_added
-e_data_cal_view_notify_objects_added_1
-e_data_cal_view_notify_objects_modified
-e_data_cal_view_notify_objects_modified_1
<SUBSECTION Standard>
E_DATA_CAL_VIEW
E_IS_DATA_CAL_VIEW
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]