libpurple/buddy.h

changeset 42722
4e20540308d7
parent 42705
e78a46048ae7
--- a/libpurple/buddy.h	Sat Apr 13 23:01:11 2024 -0500
+++ b/libpurple/buddy.h	Sat Apr 13 23:08:29 2024 -0500
@@ -39,7 +39,6 @@
 
 #include "blistnode.h"
 #include "buddyicon.h"
-#include "chat.h"
 #include "contact.h"
 #include "group.h"
 #include "media.h"
@@ -65,8 +64,7 @@
  * Gets the name of @n.
  */
 #define PURPLE_BLIST_NODE_NAME(n) \
-	(PURPLE_IS_CHAT(n) ? purple_chat_get_name(PURPLE_CHAT(n)) : \
-	PURPLE_IS_BUDDY(n) ? purple_buddy_get_name(PURPLE_BUDDY(n)) : NULL)
+	(PURPLE_IS_BUDDY(n) ? purple_buddy_get_name(PURPLE_BUDDY(n)) : NULL)
 
 /**************************************************************************/
 /* Data Structures                                                        */

mercurial