Mercurial > pidgin.yaz
diff src/gtkblist.c @ 5439:66e875239458
[gaim-migrate @ 5821]
remove debug stuff.
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Sun, 18 May 2003 21:18:52 +0000 |
parents | 6e7ba9efd1f4 |
children | e1cc0c67e123 |
line wrap: on
line diff
--- a/src/gtkblist.c Sun May 18 21:17:31 2003 +0000 +++ b/src/gtkblist.c Sun May 18 21:18:52 2003 +0000 @@ -2230,7 +2230,6 @@ if (n && GAIM_BLIST_NODE_IS_BUDDY(n)) { struct buddy *new = (struct buddy*)node, *it = (struct buddy*)n; - printf("Add %s (%d) before %s (%d)... ", new->name, new->idle, it->name, it->idle); /* This is the worst if statement ever. */ if ((it->present < new->present) || ((it->present == new->present) && (it->uc & UC_UNAVAILABLE) > (new->uc & UC_UNAVAILABLE)) || @@ -2239,14 +2238,12 @@ ((it->present == new->present) && (it->uc & UC_UNAVAILABLE) == (new->uc & UC_UNAVAILABLE) && (it->idle == new->idle) && (gaim_utf8_strcasecmp(gaim_get_buddy_alias((struct buddy*)node), gaim_get_buddy_alias((struct buddy*)n)) < 0))) { - printf("yes\n"); gtk_tree_store_insert_before(gtkblist->treemodel, &iter, &groupiter, &more_z); newpath = gtk_tree_model_get_path(GTK_TREE_MODEL(gtkblist->treemodel), &iter); gtknode->row = gtk_tree_row_reference_new(GTK_TREE_MODEL(gtkblist->treemodel), newpath); gtk_tree_path_free(newpath); return iter; } - printf("no\n"); g_value_unset(&val); } } while (gtk_tree_model_iter_next (GTK_TREE_MODEL(gtkblist->treemodel), &more_z));