comparison libpurple/protocols/oscar/tlv.c @ 29440:1fb503adb2ae

Move the mood UI for ICQ into Pidgin. It still uses the new request API stuff, which needs to be replaced. Then it needs to replace the XMPP UI.
author Richard Laager <rlaager@wiktel.com>
date Mon, 17 Nov 2008 07:30:43 +0000
parents 11cb7f2bb6e8
children 0d3145e6b1d6
comparison
equal deleted inserted replaced
29439:cdd5c6929c52 29440:1fb503adb2ae
419 byte_stream_init(&bs, buf, sizeof(buf)); 419 byte_stream_init(&bs, buf, sizeof(buf));
420 420
421 byte_stream_putcaps(&bs, caps); 421 byte_stream_putcaps(&bs, caps);
422 422
423 /* adding of custom icon GUID */ 423 /* adding of custom icon GUID */
424 data = aim_get_custom_icon_data(mood); 424 data = icq_get_custom_icon_data(mood);
425 if (data != NULL) 425 if (data != NULL)
426 byte_stream_putraw(&bs, data, 16); 426 byte_stream_putraw(&bs, data, 16);
427 427
428 return aim_tlvlist_add_raw(list, type, byte_stream_curpos(&bs), buf); 428 return aim_tlvlist_add_raw(list, type, byte_stream_curpos(&bs), buf);
429 } 429 }