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

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

index 2356dec..8325357 100644 (file)
@@ -32,9 +32,6 @@ void          e_client_set_online             (EClient *client, gboolean is_online);
 
 void           e_client_emit_backend_property_changed   (EClient *client, const gchar *prop_name, const gchar *prop_value);
 
-/* protected functions simplifying sync/async calls */
-GDBusProxy *   e_client_get_dbus_proxy         (EClient *client);
-
 G_END_DECLS
 
 #endif /* E_CLIENT_PRIVATE_H */
index a8f4ad2..0e3354c 100644 (file)
@@ -2053,20 +2053,6 @@ e_client_util_parse_comma_strings (const gchar *strings)
        return g_slist_reverse (strs_slist);
 }
 
-GDBusProxy *
-e_client_get_dbus_proxy (EClient *client)
-{
-       EClientClass *class;
-
-       g_return_val_if_fail (E_IS_CLIENT (client), NULL);
-
-       class = E_CLIENT_GET_CLASS (client);
-       g_return_val_if_fail (class != NULL, NULL);
-       g_return_val_if_fail (class->get_dbus_proxy != NULL, NULL);
-
-       return class->get_dbus_proxy (client);
-}
-
 /**
  * e_client_unwrap_dbus_error:
  * @client: an #EClient