diff src/server.c @ 3427:8fa61405af2b

[gaim-migrate @ 3453] Who never commits anything *now*, Etan? I changed most of the error message text around. If you think any of it should be different, just let me know, or send a patch. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Sun, 25 Aug 2002 10:51:24 +0000
parents dd34e0b40fed
children b48065e52337
line wrap: on
line diff
--- a/src/server.c	Sun Aug 25 06:08:15 2002 +0000
+++ b/src/server.c	Sun Aug 25 10:51:24 2002 +0000
@@ -52,7 +52,7 @@
 
 	if (p && p->login) {
 		if (!strlen(user->password) && !(p->options & OPT_PROTO_NO_PASSWORD)) {
-			do_error_dialog(_("Please enter your password"), _("Signon Error"));
+			do_error_dialog(_("Please enter your password"), NULL, GAIM_ERROR);
 			return;
 		}
 
@@ -805,7 +805,7 @@
 	g_snprintf(buf2, sizeof(buf2), "%s has just been warned by %s.\nYour new warning level is %d%%",
 		   gc->username, ((name == NULL)? "an anonymous person" : name), lev);
 
-	do_error_dialog(buf2, _("Warned"));
+	do_error_dialog(buf2, NULL, GAIM_INFO);
 }
 
 void serv_got_typing(struct gaim_connection *gc, char *name, int timeout) {