Mercurial > pidgin
view src/protocols/zephyr/error_table.h @ 12479:53e2dc07d9e2
[gaim-migrate @ 14790]
SF Patch #1379776 from charkins
"This is a small fix to the blist visibility stuff. When
the blist is set hidden and there is no visibility
manager, the blist gets minimized. However, if there
was previously a visibility manager and the blist was
already hidden, it doesn't get shown before it is
iconified. This patch fixes that.
In addition, I added two debug statements to track the
count of visibility managers. This will be helpful for
diagnosing visibility issues if users send in debug logs."
committer: Tailor Script <tailor@pidgin.im>
| author | Richard Laager <rlaager@wiktel.com> |
|---|---|
| date | Tue, 13 Dec 2005 23:35:46 +0000 |
| parents | fc464a0abccc |
| children | 202ce52b77a9 |
line wrap: on
line source
/* * Copyright 1988 by the Student Information Processing Board of the * Massachusetts Institute of Technology. * * For copyright info, see mit-sipb-copyright.h. */ #ifndef _ET_H struct error_table { char const * const * msgs; long base; int n_msgs; }; struct et_list { struct et_list *next; const struct error_table *table; }; extern struct et_list * _et_list; #define ERRCODE_RANGE 8 /* # of bits to shift table number */ #define BITS_PER_CHAR 6 /* # bits to shift per character in name */ extern const char *error_table_name(void); #define _ET_H #endif
