Thu, 07 Jan 2010 23:47:00 +0000
*** Plucked rev d1026e37e4b82add833d2a302a41c8f84e4e2bbb (cc475d6ed3e62e0458659c41bb58ac72f63d88c9):
Fix a crash when disconnecting with a pending buddy icon fetch request.
We weren't canceling our asynchronous URL fetch
*** Plucked rev 03d1409613057bd402e5659d936f59a6d201a93e (cc475d6ed3e62e0458659c41bb58ac72f63d88c9):
Two changes:
1. If we're about to make another request to fetch an icon then cancel
the first one (if it exists)
2. When freeing a buddy, only attempt to cancel a url request if it is non-NULL
| 12053 | 1 | /** @page core-signals Core Signals |
| 2 | ||
| 3 | @signals | |
| 4 | @signal quitting | |
|
28189
db6dce6fba36
Document the uri-handler signal. Did I get this right?
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
5 | @signal uri-handler |
| 12053 | 6 | @endsignals |
| 7 | ||
|
20897
2608e9e07913
Add some links from signal documentation back to the documentation for the
Will Thompson <resiak@pidgin.im>
parents:
16257
diff
changeset
|
8 | @see core.h |
|
2608e9e07913
Add some links from signal documentation back to the documentation for the
Will Thompson <resiak@pidgin.im>
parents:
16257
diff
changeset
|
9 | |
| 12053 | 10 | <hr> |
| 11 | ||
| 12 | @signaldef quitting | |
| 13 | @signalproto | |
| 14 | void (*quitting)(); | |
| 15 | @endsignalproto | |
| 16 | @signaldesc | |
| 16257 | 17 | Emitted when libpurple is quitting. |
| 12053 | 18 | @endsignaldef |
| 19 | ||
|
28189
db6dce6fba36
Document the uri-handler signal. Did I get this right?
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
20 | @signaldef uri-handler |
|
db6dce6fba36
Document the uri-handler signal. Did I get this right?
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
21 | @signalproto |
|
db6dce6fba36
Document the uri-handler signal. Did I get this right?
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
22 | gboolean (*uri_handler)(const gchar *proto, const gchar *cmd, GHashTable *params); |
|
db6dce6fba36
Document the uri-handler signal. Did I get this right?
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
23 | @endsignalproto |
|
db6dce6fba36
Document the uri-handler signal. Did I get this right?
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
24 | @signaldesc |
|
db6dce6fba36
Document the uri-handler signal. Did I get this right?
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
25 | Emitted when handling a registered URI. |
|
db6dce6fba36
Document the uri-handler signal. Did I get this right?
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
26 | @param proto The protocol of the URI. |
|
db6dce6fba36
Document the uri-handler signal. Did I get this right?
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
27 | @param cmd The 'command' of the URI. |
|
db6dce6fba36
Document the uri-handler signal. Did I get this right?
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
28 | @param params Any key/value parameters from the URI. |
|
db6dce6fba36
Document the uri-handler signal. Did I get this right?
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
29 | @endsignaldef |
|
db6dce6fba36
Document the uri-handler signal. Did I get this right?
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
30 | |
| 12053 | 31 | */ |
|
20897
2608e9e07913
Add some links from signal documentation back to the documentation for the
Will Thompson <resiak@pidgin.im>
parents:
16257
diff
changeset
|
32 | // vim: syntax=c.doxygen tw=75 et |