Mon, 23 Jan 2006 06:54:29 +0000
[gaim-migrate @ 15367]
I don't expect any of this to be controversial.
* Some comment and other small changes.
* Changed gtkconn.c to store the list of errored accounts in a hash
table instead of a glist
* Added init and uninit functions to gtkconn.c. They're used to create
and destroy the two hash tables used within that file.
* Also use the new init and uninit functions to connect to the account
deleted signal so that we clear out the old error message if we delete
an account that had an error while connecting.
| 12129 | 1 | /** @page conversation-signals Notification Signals |
| 2 | ||
| 3 | @signals | |
| 4 | @signal displaying-userinfo | |
| 5 | @endsignals | |
| 6 | ||
| 7 | @signaldef displaying-userinfo | |
| 8 | @signalproto | |
| 9 | void (*displaying_userinfo)(GaimAccount *account, const char *who, char **infotext); | |
| 10 | @endsignalproto | |
| 11 | @signaldesc | |
| 12 | Emitted before userinfo is handed to the UI to display. | |
| 13 | @a infotext is a pointer to a string, so a plugin can replace the text that | |
| 14 | will be displayed. | |
| 15 | @note | |
| 16 | Make sure to free @a *infotext before you replace it! | |
| 17 | @param account The account on which the info was obtained. | |
| 18 | @param who The screen name of the user whose info is to be displayed. | |
| 19 | @param infotext A pointer to the userinfo text to be displayed. | |
| 20 | @endsignaldef | |
| 21 | ||
| 22 | */ | |
| 23 | // vim: syntax=c tw=75 et |