From: <aar...@us...> - 2006-07-11 01:13:00
|
Revision: 16482 Author: aaronsheldon Date: 2006-07-10 18:12:35 -0700 (Mon, 10 Jul 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16482&view=rev Log Message: ----------- The previous change broke going offline. Oops. Modified Paths: -------------- branches/soc-2006-blist-efficiency/src/gtkblist.c Modified: branches/soc-2006-blist-efficiency/src/gtkblist.c =================================================================== --- branches/soc-2006-blist-efficiency/src/gtkblist.c 2006-07-11 00:43:51 UTC (rev 16481) +++ branches/soc-2006-blist-efficiency/src/gtkblist.c 2006-07-11 01:12:35 UTC (rev 16482) @@ -3174,18 +3174,13 @@ if(gtkblist->selected_node == node) gtkblist->selected_node = NULL; - /* This code seems to be irrelevant. We should not need to update the - * gtkblist before a node is removed and it takes a lot of time to do that. - */ -#if 0 if (get_iter_from_node(node, &iter)) { gtk_tree_store_remove(gtkblist->treemodel, &iter); if(GAIM_BLIST_NODE_IS_CONTACT(node) || GAIM_BLIST_NODE_IS_BUDDY(node) || GAIM_BLIST_NODE_IS_CHAT(node)) { gaim_gtk_blist_update(list, node->parent); - } - } -#endif + } + } gtk_tree_row_reference_free(gtknode->row); gtknode->row = NULL; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |