Mon, 03 Sep 2007 09:45:56 +0000
You can't just look at the first letter of the screen name to determine
if it's AIM or ICQ now. It's possible for someone to register their
email address as an AIM account, and you can register "12345imcool@gmail.com"
as an AIM account. If you only look at the first letter then Pidgin
will think it's ICQ.
| 12053 | 1 | /** @page cipher-signals Cipher Signals |
| 2 | ||
| 3 | @signals | |
| 4 | @signal cipher-added | |
| 5 | @signal cipher-removed | |
| 6 | @endsignals | |
| 7 | ||
| 8 | <hr> | |
| 9 | ||
| 10 | @signaldef cipher-added | |
| 11 | @signalproto | |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
12053
diff
changeset
|
12 | void (*cipher_added)(PurpleCipher *cipher); |
| 12053 | 13 | @endsignalproto |
| 14 | @signaldesc | |
| 15 | Emitted when a cipher is added. | |
| 16 | @param cipher The cipher that was added. | |
| 17 | @endsignaldef | |
| 18 | ||
| 19 | @signaldef cipher-removed | |
| 20 | @signalproto | |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
12053
diff
changeset
|
21 | void (*cipher_removed)(PurpleCipher *cipher); |
| 12053 | 22 | @endsignalproto |
| 23 | @signaldesc | |
| 24 | Emitted when a cipher is removed. | |
| 25 | @param cipher The cipher that was removed. | |
| 26 | @endsignaldef | |
| 27 | ||
| 28 | */ | |
| 29 | // vim: syntax=c tw=75 et |