comparison libpurple/protocols/gg/gg.c @ 32046:dc1c25b81efd

Small space to tab changes.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Wed, 11 May 2011 03:49:44 +0000
parents 79ae7200a11a
children df7a22ec0bc3
comparison
equal deleted inserted replaced
32040:06ed9020b784 32046:dc1c25b81efd
1614 g_hash_table_remove(info->pending_images, GINT_TO_POINTER(ev->event.image_request.crc32)); 1614 g_hash_table_remove(info->pending_images, GINT_TO_POINTER(ev->event.image_request.crc32));
1615 } 1615 }
1616 } 1616 }
1617 1617
1618 static void ggp_typing_notification_handler(PurpleConnection *gc, uin_t uin, int length) { 1618 static void ggp_typing_notification_handler(PurpleConnection *gc, uin_t uin, int length) {
1619 gchar *from; 1619 gchar *from;
1620 1620
1621 from = g_strdup_printf("%u", uin); 1621 from = g_strdup_printf("%u", uin);
1622 if (length) 1622 if (length)
1623 serv_got_typing(gc, from, 0, PURPLE_TYPING); 1623 serv_got_typing(gc, from, 0, PURPLE_TYPING);
1624 else 1624 else
1625 serv_got_typing_stopped(gc, from); 1625 serv_got_typing_stopped(gc, from);
1626 g_free(from); 1626 g_free(from);
1627 } 1627 }
1628 1628
1629 /** 1629 /**
1630 * Handling of XML events. 1630 * Handling of XML events.
1631 * 1631 *
1788 1788
1789 ggp_generic_status_handler(gc, ev->event.status60.uin, 1789 ggp_generic_status_handler(gc, ev->event.status60.uin,
1790 GG_S(ev->event.status60.status), ev->event.status60.descr); 1790 GG_S(ev->event.status60.status), ev->event.status60.descr);
1791 break; 1791 break;
1792 case GG_EVENT_USERLIST: 1792 case GG_EVENT_USERLIST:
1793 if (ev->event.userlist.type == GG_USERLIST_GET_REPLY) { 1793 if (ev->event.userlist.type == GG_USERLIST_GET_REPLY) {
1794 purple_debug_info("gg", "GG_USERLIST_GET_REPLY\n"); 1794 purple_debug_info("gg", "GG_USERLIST_GET_REPLY\n");
1795 purple_notify_info(gc, NULL, 1795 purple_notify_info(gc, NULL,
1796 _("Buddy list downloaded"), 1796 _("Buddy list downloaded"),
1797 _("Your buddy list was downloaded from the server.")); 1797 _("Your buddy list was downloaded from the server."));
1798 if (ev->event.userlist.reply != NULL) { 1798 if (ev->event.userlist.reply != NULL) {