Mercurial > pidgin
annotate doc/log-signals.dox @ 16040:b2377a475f13
Fix the following compile error:
fi.po:15502: duplicate message definition...
fi.po:11302: ...this is the location of the first definition
/usr/bin/msgfmt: found 1 fatal error
It seemed weird to me because 15502 looked like it had been
commented out... but whatever.
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Tue, 10 Apr 2007 07:19:20 +0000 |
parents | 3df4aadebc20 |
children | 8cf53d7a0887 |
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 | |
14617
3df4aadebc20
[gaim-migrate @ 17345]
Etan Reisner <pidgin@unreliablesource.net>
parents:
13987
diff
changeset
|
11 char *(*log_timestamp)(GaimLog *log, time_t when); |
12737 | 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. | |
13987
f94309c7c480
[gaim-migrate @ 16559]
Richard Laager <rlaager@wiktel.com>
parents:
12737
diff
changeset
|
17 @param when The time to be converted to a string. |
12737 | 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 |