Deprecate e_client_util_free_object_slist().
authorMatthew Barnes <mbarnes@redhat.com>
Sat, 12 Jan 2013 19:33:46 +0000 (14:33 -0500)
committerMatthew Barnes <mbarnes@redhat.com>
Sat, 12 Jan 2013 19:33:46 +0000 (14:33 -0500)
Use g_slist_free_full() instead.

docs/reference/libedataserver/libedataserver-sections.txt
libedataserver/e-client.c
libedataserver/e-client.h

index c38143f..db00ae1 100644 (file)
@@ -74,7 +74,6 @@ e_client_refresh_sync
 e_client_retrieve_capabilities
 e_client_retrieve_capabilities_finish
 e_client_retrieve_capabilities_sync
-e_client_util_free_object_slist
 e_client_util_parse_comma_strings
 EClientErrorsList
 e_client_util_unwrap_dbus_error
@@ -87,6 +86,7 @@ e_client_util_strv_to_slist
 e_client_util_copy_string_slist
 e_client_util_copy_object_slist
 e_client_util_free_string_slist
+e_client_util_free_object_slist
 <SUBSECTION Standard>
 E_CLIENT
 E_IS_CLIENT
index f7ec7a3..724e597 100644 (file)
@@ -1701,6 +1701,8 @@ e_client_util_free_string_slist (GSList *strings)
  * itself.
  *
  * Since: 3.2
+ *
+ * Deprecated: 3.8: Use g_slist_free_full() instead.
  **/
 void
 e_client_util_free_object_slist (GSList *objects)
index a0169d8..bde665c 100644 (file)
@@ -387,7 +387,6 @@ gboolean    e_client_retrieve_capabilities_sync
                                                 GCancellable *cancellable,
                                                 GError **error);
 
-void           e_client_util_free_object_slist (GSList *objects);
 GSList *       e_client_util_parse_comma_strings
                                                (const gchar *strings);
 
@@ -428,6 +427,7 @@ GSList *    e_client_util_copy_string_slist (GSList *copy_to,
 GSList *       e_client_util_copy_object_slist (GSList *copy_to,
                                                 const GSList *objects);
 void           e_client_util_free_string_slist (GSList *strings);
+void           e_client_util_free_object_slist (GSList *objects);
 #endif /* EDS_DISABLE_DEPRECATED */
 
 G_END_DECLS