From: <aar...@us...> - 2006-07-06 00:32:45
|
Revision: 16434 Author: aaronsheldon Date: 2006-07-05 17:32:38 -0700 (Wed, 05 Jul 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16434&view=rev Log Message: ----------- A group is a chat's parent, not a chat's grandparent. (Thanks, Sadrul). Modified Paths: -------------- trunk/src/gtkblist.c Modified: trunk/src/gtkblist.c =================================================================== --- trunk/src/gtkblist.c 2006-07-05 23:55:22 UTC (rev 16433) +++ trunk/src/gtkblist.c 2006-07-06 00:32:38 UTC (rev 16434) @@ -4110,9 +4110,9 @@ if (GAIM_BLIST_NODE_IS_GROUP(node)) gnode = node; - else if (GAIM_BLIST_NODE_IS_BUDDY(node) || GAIM_BLIST_NODE_IS_CHAT(node)) + else if (GAIM_BLIST_NODE_IS_BUDDY(node)) gnode = node->parent->parent; - else if (GAIM_BLIST_NODE_IS_CONTACT(node)) + else if (GAIM_BLIST_NODE_IS_CONTACT(node) || GAIM_BLIST_NODE_IS_CHAT(node)) gnode = node->parent; else return; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |