pidgin/plugins/ticker/ticker.c

branch
soc.2013.gobjectification
changeset 34696
6e0d13978666
parent 34660
68c776e3436e
child 34699
09b2c9219b57
--- a/pidgin/plugins/ticker/ticker.c	Wed Jul 03 04:58:28 2013 +0530
+++ b/pidgin/plugins/ticker/ticker.c	Wed Jul 03 21:49:28 2013 +0530
@@ -234,22 +234,22 @@
 	    gnode;
 	    gnode = purple_blist_node_get_sibling_next(gnode))
 	{
-		if(!PURPLE_BLIST_NODE_IS_GROUP(gnode))
+		if(!PURPLE_IS_GROUP(gnode))
 			continue;
 		for(cnode = purple_blist_node_get_first_child(gnode);
 		    cnode;
 		    cnode = purple_blist_node_get_sibling_next(cnode))
 		{
-			if(!PURPLE_BLIST_NODE_IS_CONTACT(cnode))
+			if(!PURPLE_IS_CONTACT(cnode))
 				continue;
 			for(bnode = purple_blist_node_get_first_child(cnode);
 			    bnode;
 			    bnode = purple_blist_node_get_sibling_next(bnode))
 			{
-				if(!PURPLE_BLIST_NODE_IS_BUDDY(bnode))
+				if(!PURPLE_IS_BUDDY(bnode))
 					continue;
 				b = (PurpleBuddy *)bnode;
-				if(PURPLE_BUDDY_IS_ONLINE(b))
+				if(PURPLE_IS_BUDDY_ONLINE(b))
 					buddy_ticker_add_buddy(b);
 			}
 		}

mercurial