Mercurial > pidgin.yaz
view console/libgnt/gnt.h @ 14484:1f81919515ae
[gaim-migrate @ 17203]
Part of SF Patch #1554627 from Richard Nelson (wabz)
"The msn protocol currently calls serv_got_alias on all
buddy status changes (as they are NLN commands),
resulting in lots of unnecessary blist.xml write schedules.
serv_got_alias already checks if the alias has actually
changed before printing to the conv. The first hunk in
this patch checks it a bit earlier."
The second hunk checks in the MSN prpl, which also avoids
an extra call to msn_user_set_friendly_name().
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Sat, 09 Sep 2006 20:27:48 +0000 |
parents | 8375ecb6152b |
children | 62bb53609a36 |
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)()); void gnt_quit();