|
From: xevuz <xe...@us...> - 2007-07-15 11:23:17
|
Update of /cvsroot/chix/chix_gaim/src In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv31991/src Modified Files: chix_gaim.c Log Message: remove printfs Index: chix_gaim.c =================================================================== RCS file: /cvsroot/chix/chix_gaim/src/chix_gaim.c,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- chix_gaim.c 15 Jul 2007 10:32:19 -0000 1.21 +++ chix_gaim.c 15 Jul 2007 11:23:10 -0000 1.22 @@ -61,8 +61,6 @@ static inline void __update_buddy_status(PurpleAccount *account, ChixBuddy *buddy) { - char buf[16]; - if (chix_buddy_away_get(buddy, NULL, 0) == AWAY_AWAY) purple_prpl_got_user_status(account, buddy->id, "away", NULL); else if (chix_buddy_away_get(buddy, NULL, 0) == AWAY_BUSY) @@ -404,8 +402,6 @@ char buf2[16]; chix_buddy_away_get(buddy, buf2, sizeof(buf2)); - printf("%s\n", __func__); - printf("%s\n", buf2); if (CHIX_BUDDY_ON_BOTH(buddy)) g_snprintf(buf, size, _("%s %s"), buf2, _("(PC/Mobile)")); @@ -422,12 +418,9 @@ { char buf[64]; - printf("%s\n", __func__); - if (!buddy->proto_data) return g_strdup(_("Buddy not listed")); __status_text(buddy->proto_data, buf, sizeof(buf)); - printf("%s\n", buf); return g_strdup(buf); } |