Mercurial > pidgin
view doc/certificate-signals.dox @ 32474:53ae12ee0b68
pidgin: Fix so that logging works again
This was broken in 941f205e71bee6f0fe79442af21238c088eecbac.
The semantics are that the global setting is used if a per-blist-node
doesn't exist. This requires we know whether one exists or not
(value being non-NULL previously), hence the new API.
I was going to add this as _get_type(), but I thought I remembered
we were trying to move away from PurpleValue. Anyway, feel free to fix
this another way before 3.0.0.
Thanks to dvpdiner2 for narrowing down the offending commit.
author | Paul Aurich <paul@darkrain42.org> |
---|---|
date | Sun, 15 Jan 2012 05:50:58 +0000 |
parents | e0613cf8c493 |
children |
line wrap: on
line source
/** @page certificate-signals Certificate Signals @signals @signal certificate-stored @signal certificate-deleted @endsignals @see certificate.h <hr> @signaldef certificate-stored @signalproto void (*certificate_stored)(PurpleCertificatePool *pool, const gchar *id, gpointer data); @endsignalproto @signaldesc Emitted when a pool stores a certificate. Connect to the pool instance. @param pool Pool the certificate has been stored into @param id Key the certificate was stored under @endsignaldef @signaldef certificate-deleted @signalproto void (*certificate_deleted)(PurpleCertificatePool *pool, const gchar *id, gpointer data); @endsignalproto @signaldesc Emitted when a pool deletes a certificate. Connect to the pool instance. @param pool Pool the certificate was deleted from @param id Key that was deleted @endsignaldef */ // vim: syntax=c.doxygen tw=75 et