Mercurial > pidgin.yaz
annotate doc/log-signals.dox @ 13559:bbbde2f5c03b
[gaim-migrate @ 15938]
This finally bothered me enough to fix. We were only rebuilding the Join a Chat
dialog entries when the protocol of the selected account changed. That
didn't work so well for jabber since jabber uses different nickname/server
values based on which server you choose.
I considered testing for jabber specifically instead of always but that seemed
uglier and this really won't hurt us much.
committer: Tailor Script <tailor@pidgin.im>
author | Etan Reisner <pidgin@unreliablesource.net> |
---|---|
date | Fri, 24 Mar 2006 16:04:59 +0000 |
parents | a1e241dd50b6 |
children | f94309c7c480 |
rev | line source |
---|---|
12737 | 1 /** @page log-signals Log Signals |
2 | |
3 @signals | |
4 @signal log-timestamp | |
5 @endsignals | |
6 | |
7 <hr> | |
8 | |
9 @signaldef log-timestamp | |
10 @signalproto | |
11 char *(*log_timestamp)(GaimConversation *conv, struct tm *tm); | |
12 @endsignalproto | |
13 @signaldesc | |
14 Emitted to allow plugins to customize the timestamp on a message | |
15 being logged. | |
16 @param log The log the message belongs to. | |
17 @param tm The time to be converted to a string. | |
18 @return A textual representation of the time, or @c NULL to use a | |
19 default format. | |
20 @note Plugins must be careful of logs with a type of GAIM_LOG_SYSTEM. | |
21 @endsignaldef | |
22 | |
23 */ | |
24 // vim: syntax=c tw=75 et |