Remove e_client_emit_backend_error().
authorMatthew Barnes <mbarnes@redhat.com>
Sun, 10 Feb 2013 12:22:09 +0000 (07:22 -0500)
committerMatthew Barnes <mbarnes@redhat.com>
Sun, 10 Feb 2013 12:22:09 +0000 (07:22 -0500)
Private API, no longer used.

libedataserver/e-client-private.h
libedataserver/e-client.c

index dd4afa1..2356dec 100644 (file)
@@ -30,7 +30,6 @@ void          e_client_set_capabilities       (EClient *client, const gchar *capabilities);
 void           e_client_set_readonly           (EClient *client, gboolean readonly);
 void           e_client_set_online             (EClient *client, gboolean is_online);
 
-void           e_client_emit_backend_error     (EClient *client, const gchar *error_msg);
 void           e_client_emit_backend_property_changed   (EClient *client, const gchar *prop_name, const gchar *prop_value);
 
 /* protected functions simplifying sync/async calls */
index d1bb9da..a8f4ad2 100644 (file)
@@ -1209,16 +1209,6 @@ e_client_cancel_all (EClient *client)
 }
 
 void
-e_client_emit_backend_error (EClient *client,
-                             const gchar *error_msg)
-{
-       g_return_if_fail (E_IS_CLIENT (client));
-       g_return_if_fail (error_msg != NULL);
-
-       g_signal_emit (client, signals[BACKEND_ERROR], 0, error_msg);
-}
-
-void
 e_client_emit_backend_property_changed (EClient *client,
                                         const gchar *prop_name,
                                         const gchar *prop_value)