diff src/protocols/msn/notification.c @ 5436:ad445074d239

[gaim-migrate @ 5818] Another big commit. Ugh. I need a very smart regexp. Core/UI split do_error_dialog(), and soon the mail dialogs! Yay! This should work without problems at all, but standard disclaimer.. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sun, 18 May 2003 19:59:02 +0000
parents 9acf4832c0dc
children 40e976d42028
line wrap: on
line diff
--- a/src/protocols/msn/notification.c	Sun May 18 19:13:21 2003 +0000
+++ b/src/protocols/msn/notification.c	Sun May 18 19:59:02 2003 +0000
@@ -131,7 +131,7 @@
 		g_snprintf(buf, sizeof(buf), "MSN Error: Unable to parse message\n");
 	}
 
-	do_error_dialog(buf, NULL, GAIM_ERROR);
+	gaim_notify_error(servconn->session->account->gc, NULL, buf, NULL);
 
 	return TRUE;
 }
@@ -1218,9 +1218,8 @@
 				break;
 		}
 
-		if (*buf != '\0') {
-			do_error_dialog(buf, NULL, GAIM_INFO);
-		}
+		if (*buf != '\0')
+			gaim_notify_info(servconn->session->account->gc, NULL, buf, NULL);
 	}
 
 	g_hash_table_destroy(table);