This function no longer does anything.
priv = E_BOOK_CLIENT_GET_PRIVATE (object);
- e_client_cancel_all (E_CLIENT (object));
-
if (priv->dbus_proxy_error_handler_id > 0) {
g_signal_handler_disconnect (
priv->dbus_proxy,
priv = E_CAL_CLIENT_GET_PRIVATE (object);
- e_client_cancel_all (E_CLIENT (object));
-
if (priv->dbus_proxy_error_handler_id > 0) {
g_signal_handler_disconnect (
priv->dbus_proxy,
e_client_is_readonly
e_client_is_online
e_client_unwrap_dbus_error
-e_client_cancel_all
e_client_get_backend_property
e_client_get_backend_property_finish
e_client_get_backend_property_sync
CLIENT_BACKEND_PROPERTY_OPENED
CLIENT_BACKEND_PROPERTY_OPENING
e_client_is_opened
+e_client_cancel_all
e_client_retrieve_capabilities
e_client_retrieve_capabilities_finish
e_client_retrieve_capabilities_sync
}
static void
-client_dispose (GObject *object)
-{
- EClient *client;
-
- client = E_CLIENT (object);
-
- e_client_cancel_all (client);
-
- /* Chain up to parent's dispose() method. */
- G_OBJECT_CLASS (e_client_parent_class)->dispose (object);
-}
-
-static void
client_finalize (GObject *object)
{
EClient *client;
object_class = G_OBJECT_CLASS (class);
object_class->set_property = client_set_property;
object_class->get_property = client_get_property;
- object_class->dispose = client_dispose;
object_class->finalize = client_finalize;
class->retrieve_capabilities = client_retrieve_capabilities;
* Cancels all pending operations started on @client.
*
* Since: 3.2
+ *
+ * Deprecated: 3.8: The function no longer does anything.
**/
void
e_client_cancel_all (EClient *client)
GError *dbus_error,
GError **out_error);
-void e_client_cancel_all (EClient *client);
-
void e_client_get_backend_property (EClient *client,
const gchar *prop_name,
GCancellable *cancellable,
#define CLIENT_BACKEND_PROPERTY_OPENING "opening"
gboolean e_client_is_opened (EClient *client);
+void e_client_cancel_all (EClient *client);
void e_client_retrieve_capabilities (EClient *client,
GCancellable *cancellable,
GAsyncReadyCallback callback,