Mercurial > pidgin
diff src/protocols/irc/irc.c @ 4732:c15e0699acae
[gaim-migrate @ 5047]
hopefully this doesn't break anything.
- Capabilities are back in the tooltips
- Jabber does the neat status thing in the buddy list
- jabber "broken" buddies are gone! woohoo!
- most of the right-click menu items moved back to where they used to live,
but Get Info remains at the top, because that's where it should be.
committer: Tailor Script <tailor@pidgin.im>
| author | Nathan Walp <nwalp@pidgin.im> |
|---|---|
| date | Thu, 13 Mar 2003 06:08:56 +0000 |
| parents | 283fb289c510 |
| children | c4c28874ecd3 |
line wrap: on
line diff
--- a/src/protocols/irc/irc.c Thu Mar 13 00:10:56 2003 +0000 +++ b/src/protocols/irc/irc.c Thu Mar 13 06:08:56 2003 +0000 @@ -593,9 +593,9 @@ if (x && (*l != ' ' && *l != 0)) x = 0; if (!b->present && x) - serv_got_update(gc, b->name, 1, 0, 0, 0, 0, 0); + serv_got_update(gc, b->name, 1, 0, 0, 0, 0); else if (b->present && !x) - serv_got_update(gc, b->name, 0, 0, 0, 0, 0, 0); + serv_got_update(gc, b->name, 0, 0, 0, 0, 0); g_free(tmp); } m = m->next; @@ -2762,12 +2762,6 @@ struct proto_buddy_menu *pbm; pbm = g_new0(struct proto_buddy_menu, 1); - pbm->label = _("Get Info"); - pbm->callback = irc_get_info; - pbm->gc = gc; - m = g_list_append(m, pbm); - - pbm = g_new0(struct proto_buddy_menu, 1); pbm->label = _("DCC Chat"); pbm->callback = irc_start_chat; pbm->gc = gc;
