diff src/notify.c @ 12647:852df2d9d4f8

[gaim-migrate @ 14985] SF Patch #1360831 from Sadrul "The new mail notifications (the ones that show the from/subject fields) are displayed in one dialog. So things get less messy you are away and a lot of mail-notifs come in." committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Fri, 23 Dec 2005 21:10:24 +0000
parents 851b0bd7eb52
children d12bbe6da705
line wrap: on
line diff
--- a/src/notify.c	Fri Dec 23 19:50:39 2005 +0000
+++ b/src/notify.c	Fri Dec 23 21:10:24 2005 +0000
@@ -81,7 +81,7 @@
 		info            = g_new0(GaimNotifyInfo, 1);
 		info->type      = GAIM_NOTIFY_EMAIL;
 		info->handle    = handle;
-		info->ui_handle = ops->notify_email(subject, from, to, url);
+		info->ui_handle = ops->notify_email(handle, subject, from, to, url);
 		info->cb = cb;
 		info->cb_user_data = user_data;
 
@@ -120,7 +120,7 @@
 		info            = g_new0(GaimNotifyInfo, 1);
 		info->type      = GAIM_NOTIFY_EMAILS;
 		info->handle    = handle;
-		info->ui_handle = ops->notify_emails(count, detailed, subjects,
+		info->ui_handle = ops->notify_emails(handle, count, detailed, subjects,
 											 froms, tos, urls);
 		info->cb = cb;
 		info->cb_user_data = user_data;