pidgin/gtkdialogs.c

branch
soc.2013.gobjectification
changeset 34699
09b2c9219b57
parent 34696
6e0d13978666
child 34706
02cb08146888
--- a/pidgin/gtkdialogs.c	Wed Jul 03 22:13:33 2013 +0530
+++ b/pidgin/gtkdialogs.c	Wed Jul 03 22:18:55 2013 +0530
@@ -1111,7 +1111,7 @@
 		buddies = purple_find_buddies(account, username);
 		for (cur = buddies; cur != NULL; cur = cur->next)
 		{
-			PurpleBlistNode *node = cur->data;
+			PurpleBListNode *node = cur->data;
 			if ((node != NULL) && ((node->prev != NULL) || (node->next != NULL)))
 			{
 				pidgin_log_show_contact((PurpleContact *)node->parent);
@@ -1230,10 +1230,10 @@
 static void
 pidgin_dialogs_remove_contact_cb(PurpleContact *contact)
 {
-	PurpleBlistNode *bnode, *cnode;
+	PurpleBListNode *bnode, *cnode;
 	PurpleGroup *group;
 
-	cnode = (PurpleBlistNode *)contact;
+	cnode = (PurpleBListNode *)contact;
 	group = (PurpleGroup*)cnode->parent;
 	for (bnode = cnode->child; bnode; bnode = bnode->next) {
 		PurpleBuddy *buddy = (PurpleBuddy*)bnode;
@@ -1319,9 +1319,9 @@
 static void
 pidgin_dialogs_remove_group_cb(PurpleGroup *group)
 {
-	PurpleBlistNode *cnode, *bnode;
+	PurpleBListNode *cnode, *bnode;
 
-	cnode = ((PurpleBlistNode*)group)->child;
+	cnode = ((PurpleBListNode*)group)->child;
 
 	while (cnode) {
 		if (PURPLE_IS_CONTACT(cnode)) {

mercurial