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.
| 12292 | 1 | /** @page sound-signals Sound Signals |
| 2 | ||
| 3 | @signals | |
| 4 | @signal playing-sound-event | |
| 5 | @endsignals | |
| 6 | ||
| 7 | <hr> | |
| 8 | ||
| 9 | @signaldef playing-sound-event | |
| 10 | @signalproto | |
| 11 | gboolean (*playing_sound_event)(GaimSoundEventID event, GaimAccount *account); | |
| 12 | @endsignalproto | |
| 13 | @signaldesc | |
| 14 | Emitted when gaim is going to play a sound event. This can be used to cancel playing sound by returning TRUE. | |
| 15 | @param event The event this sound represents. | |
| 16 | @param account The account the sound is being played for. | |
| 17 | @return @c TRUE if the sound should not be played, or @c FALSE otherwise. | |
| 18 | @endsignaldef | |
| 19 | ||
| 20 | */ | |
| 21 | // vim: syntax=c tw=75 et |