Mercurial > pidgin
annotate src/protocols/zephyr/ZFreeNot.c @ 7712:2823111061ba
[gaim-migrate @ 8357]
I did a few things to my drag-and-drop patch. First, I moved the
application/x-im-contact parsing code into its own function, so we don't
have to duplicate stuff. The reason I did this is because Sean suggested
support for dragging x-im-contacts into conversation windows, which is
also implemented now, and it rocks. :)
committer: Tailor Script <tailor@pidgin.im>
| author | Christian Hammond <chipx86@chipx86.com> |
|---|---|
| date | Wed, 03 Dec 2003 02:03:25 +0000 |
| parents | 424a40f12a6c |
| children | 43d6c08d7e96 |
| rev | line source |
|---|---|
| 2086 | 1 /* This file is part of the Project Athena Zephyr Notification System. |
| 2 * It contains source for the ZFreeNotice function. | |
| 3 * | |
| 4 * Created by: Robert French | |
| 5 * | |
| 6 * $Source$ | |
| 7 * $Author: warmenhoven $ | |
| 8 * | |
| 9 * Copyright (c) 1987 by the Massachusetts Institute of Technology. | |
| 10 * For copying and distribution information, see the file | |
| 11 * "mit-copyright.h". | |
| 12 */ | |
| 13 /* $Header$ */ | |
| 14 | |
| 15 #ifndef lint | |
| 16 static char rcsid_ZFreeNotice_c[] = "$Header$"; | |
| 17 #endif | |
| 18 | |
| 19 #include <internal.h> | |
| 20 | |
| 21 Code_t ZFreeNotice(notice) | |
| 22 ZNotice_t *notice; | |
| 23 { | |
| 24 free(notice->z_packet); | |
| 25 return 0; | |
| 26 } |
