add since tags to the client_iface methods as well

Fri, 10 May 2019 19:56:44 -0500

author
Gary Kramlich <grim@reaperworld.com>
date
Fri, 10 May 2019 19:56:44 -0500
changeset 39597
bd90a84a84a4
parent 39596
17d54aaad818
child 39598
8179df0395e7

add since tags to the client_iface methods as well

libpurple/protocol.h file | annotate | diff | comparison | revisions
--- a/libpurple/protocol.h	Fri May 10 18:51:25 2019 -0500
+++ b/libpurple/protocol.h	Fri May 10 19:56:44 2019 -0500
@@ -814,6 +814,8 @@
  * purple_protocol_client_iface_get_type:
  *
  * Returns: The #GType for the protocol client interface.
+ *
+ * Since: 3.0.0
  */
 GType purple_protocol_client_iface_get_type(void);
 
@@ -825,6 +827,8 @@
  * Gets a list of actions for @connection.
  *
  * Returns: (transfer full) (element-type PurpleProtocolAction): The list of actions for @connection.
+ *
+ * Since: 3.0.0
  */
 GList *purple_protocol_client_iface_get_actions(PurpleProtocol *protocol,
 		PurpleConnection *connection);
@@ -837,6 +841,8 @@
  * Gets the icon name of the emblem that should be used for @buddy.
  *
  * Returns: The icon name of the emblem or NULL.
+ *
+ * Since: 3.0.0
  */
 const char *purple_protocol_client_iface_list_emblem(PurpleProtocol *protocol,
 		PurpleBuddy *buddy);
@@ -849,6 +855,8 @@
  * Gets the status text for @buddy.
  *
  * Returns: (transfer full): The status text for @buddy or NULL.
+ *
+ * Since: 3.0.0
  */
 char *purple_protocol_client_iface_status_text(PurpleProtocol *protocol,
 		PurpleBuddy *buddy);
@@ -862,6 +870,8 @@
  *
  * Asks @protocol to update @user_info for @buddy.  If @full is %TRUE then
  * more detailed information will added.
+ *
+ * Since: 3.0.0
  */
 void purple_protocol_client_iface_tooltip_text(PurpleProtocol *protocol,
 		PurpleBuddy *buddy, PurpleNotifyUserInfo *user_info, gboolean full);

mercurial