Mercurial > pidgin
diff src/notify.c @ 13640:d12bbe6da705
[gaim-migrate @ 16038]
* Changed signatures of some of the search results notify API functions.
* GG PRPL: Support parallel public directory searches.
committer: Tailor Script <tailor@pidgin.im>
| author | Bartoz Oler <bartosz@pidgin.im> |
|---|---|
| date | Sun, 16 Apr 2006 10:10:55 +0000 |
| parents | 852df2d9d4f8 |
| children | 6a5aaf46bd52 |
line wrap: on
line diff
--- a/src/notify.c Sat Apr 15 15:01:30 2006 +0000 +++ b/src/notify.c Sun Apr 16 10:10:55 2006 +0000 @@ -165,7 +165,8 @@ void * gaim_notify_searchresults(GaimConnection *gc, const char *title, const char *primary, const char *secondary, - GaimNotifySearchResults *results, GaimNotifyCloseCallback cb, gpointer user_data) + GaimNotifySearchResults *results, GaimNotifyCloseCallback cb, + gpointer user_data) { GaimNotifyUiOps *ops; @@ -178,7 +179,7 @@ info->type = GAIM_NOTIFY_SEARCHRESULTS; info->handle = gc; info->ui_handle = ops->notify_searchresults(gc, title, primary, - secondary, results); + secondary, results, user_data); info->cb = cb; info->cb_user_data = user_data; @@ -225,14 +226,14 @@ void gaim_notify_searchresults_new_rows(GaimConnection *gc, GaimNotifySearchResults *results, - void *data, gpointer user_data) + void *data) { GaimNotifyUiOps *ops; ops = gaim_notify_get_ui_ops(); if (ops != NULL && ops->notify_searchresults != NULL) { - ops->notify_searchresults_new_rows(gc, results, data, user_data); + ops->notify_searchresults_new_rows(gc, results, data); } }
