Mercurial > pidgin
changeset 18512:0cb139b20d65
I can pretty much swear this worked at some point. I am not sure when this
stopped working. Apparently the ordering of the parameters is wrong.
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Fri, 13 Jul 2007 10:50:43 +0000 |
parents | 7ee0e0597a26 |
children | ad12ae61bb2c |
files | finch/gntblist.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/finch/gntblist.c Fri Jul 13 01:42:29 2007 +0000 +++ b/finch/gntblist.c Fri Jul 13 10:50:43 2007 +0000 @@ -679,7 +679,7 @@ void (*callback)(PurpleBlistNode *, gpointer); callback = (void (*)(PurpleBlistNode *, gpointer))action->callback; if (callback) - callback(action->data, node); + callback(node, action->data); else return; }