summaryrefslogtreecommitdiff
path: root/libpurple/purpleprotocolclient.h
diff options
context:
space:
mode:
authorGary Kramlich <grim@reaperworld.com>2023-03-20 22:28:16 -0500
committerGary Kramlich <grim@reaperworld.com>2023-03-20 22:28:16 -0500
commit67bfa4467929aa588dfc346a1d329dc9297d839c (patch)
tree72c97cca6b78030cae643c3f2daced22b60770ce /libpurple/purpleprotocolclient.h
parent987284a9f9ccfb30a867609a616c6ac71da3fc7f (diff)
downloadpidgin-67bfa4467929aa588dfc346a1d329dc9297d839c.tar.gz
Remove PurpleProtocolClient->tooltip_text as it is barely used and we're scaling back our tooltip usage
Testing Done: Compiled Reviewed at https://reviews.imfreedom.org/r/2370/
Diffstat (limited to 'libpurple/purpleprotocolclient.h')
-rw-r--r--libpurple/purpleprotocolclient.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/libpurple/purpleprotocolclient.h b/libpurple/purpleprotocolclient.h
index 1d1c74acc3..d3d4c8758c 100644
--- a/libpurple/purpleprotocolclient.h
+++ b/libpurple/purpleprotocolclient.h
@@ -53,7 +53,6 @@ G_DECLARE_INTERFACE(PurpleProtocolClient, purple_protocol_client, PURPLE,
* @list_emblem: Fills the four <type>char**</type>'s with string identifiers
* for "emblems" that the UI will interpret and display as
* relevant.
- * @tooltip_text: Allows the protocol to add text to a buddy's tooltip.
* @blist_node_menu: Returns a list of #PurpleActionMenu structs, which
* represent extra actions to be shown in (for example) the
* right-click menu for @node.
@@ -116,9 +115,6 @@ struct _PurpleProtocolClientInterface {
/*< public >*/
const gchar *(*list_emblem)(PurpleProtocolClient *client, PurpleBuddy *buddy);
- void (*tooltip_text)(PurpleProtocolClient *client, PurpleBuddy *buddy, PurpleNotifyUserInfo *user_info,
- gboolean full);
-
GList *(*blist_node_menu)(PurpleProtocolClient *client, PurpleBlistNode *node);
void (*buddy_free)(PurpleProtocolClient *client, PurpleBuddy *buddy);
@@ -155,20 +151,6 @@ G_BEGIN_DECLS
const gchar *purple_protocol_client_list_emblem(PurpleProtocolClient *client, PurpleBuddy *buddy);
/**
- * purple_protocol_client_tooltip_text:
- * @client: The #PurpleProtocolClient instance.
- * @buddy: The #PurpleBuddy instance.
- * @user_info: The #PurpleNotifyUserInfo instance.
- * @full: Whether or not additional info should be added.
- *
- * Asks @client to update @user_info for @buddy. If @full is %TRUE then
- * more detailed information will added.
- *
- * Since: 3.0.0
- */
-void purple_protocol_client_tooltip_text(PurpleProtocolClient *client, PurpleBuddy *buddy, PurpleNotifyUserInfo *user_info, gboolean full);
-
-/**
* purple_protocol_client_blist_node_menu:
* @client: The #PurpleProtocolClient instance.
* @node: The #PurpleBlistNode instance.