Changeset 61ae52c for protocols/oscar
- Timestamp:
- 2007-04-20T05:19:06Z (18 years ago)
- Branches:
- master
- Children:
- b0eaa5b
- Parents:
- d323394c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/oscar/oscar.c
rd323394c r61ae52c 750 750 chatcon = find_oscar_chat_by_conn(ic, fr->conn); 751 751 chatcon->id = id; 752 chatcon->cnv = serv_got_joined_chat(ic, chatcon->show);752 chatcon->cnv = imcb_chat_new(ic, chatcon->show); 753 753 chatcon->cnv->data = chatcon; 754 754 … … 1461 1461 1462 1462 for (i = 0; i < count; i++) 1463 add_chat_buddy(c->cnv, info[i].sn);1463 imcb_chat_add_buddy(c->cnv, info[i].sn); 1464 1464 1465 1465 return 1; … … 1484 1484 1485 1485 for (i = 0; i < count; i++) 1486 remove_chat_buddy(c->cnv, info[i].sn, NULL);1486 imcb_chat_remove_buddy(c->cnv, info[i].sn, NULL); 1487 1487 1488 1488 return 1; … … 1535 1535 tmp = g_malloc(BUF_LONG); 1536 1536 g_snprintf(tmp, BUF_LONG, "%s", msg); 1537 serv_got_chat_in(ccon->cnv, info->sn, 0, tmp, time((time_t)NULL));1537 imcb_chat_msg(ccon->cnv, info->sn, tmp, 0, 0); 1538 1538 g_free(tmp); 1539 1539 … … 2513 2513 2514 2514 /* Notify the conversation window that we've left the chat */ 2515 serv_got_chat_left(cc->cnv);2515 imcb_chat_removed(cc->cnv); 2516 2516 2517 2517 /* Destroy the chat_connection */
Note: See TracChangeset
for help on using the changeset viewer.