Mercurial > pidgin
view console/libgnt/gnt.h @ 15261:b5dff06f9c84
[gaim-migrate @ 18051]
Fixed retrieval of the roster for non-Google Talk Jabber accounts, which was broken in [17993].
This does not entirely fix the problem for such accounts, however; the roster is retrieved *after* we're told of presence for most/all of the roster. If GaimBuddy objects are not already created -- the blist.xml file was deleted, to pick a completely random example -- then such presence information is simply dropped, because jabber_presence_parse() uses gaim_find_buddy() and returns immediately if the buddy can't be found.
committer: Tailor Script <tailor@pidgin.im>
author | Evan Schoenberg <evan.s@dreskin.net> |
---|---|
date | Mon, 25 Dec 2006 06:01:33 +0000 |
parents | 62bb53609a36 |
children | 0eb7846f9e7e |
line wrap: on
line source
#include <glib.h> #include "gntwidget.h" #include "gntcolors.h" #include "gntkeys.h" void gnt_init(); void gnt_main(); gboolean gnt_ascii_only(); void gnt_screen_occupy(GntWidget *widget); void gnt_screen_release(GntWidget *widget); void gnt_screen_update(GntWidget *widget); void gnt_screen_take_focus(GntWidget *widget); void gnt_screen_resize_widget(GntWidget *widget, int width, int height); void gnt_screen_move_widget(GntWidget *widget, int x, int y); void gnt_screen_rename_widget(GntWidget *widget, const char *text); gboolean gnt_widget_has_focus(GntWidget *widget); void gnt_widget_set_urgent(GntWidget *widget); void gnt_register_action(const char *label, void (*callback)()); gboolean gnt_screen_menu_show(gpointer menu); void gnt_quit();