comparison src/multi.c @ 3074:793fb2e9d53b

[gaim-migrate @ 3088] Less ambiguous error message when you get kicked offline. Thanks, JSeymour. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Sun, 17 Mar 2002 20:23:34 +0000
parents cbb8b9b4ca4a
children c0928d7fdcf9
comparison
equal deleted inserted replaced
3073:22c82a341c32 3074:793fb2e9d53b
1399 void hide_login_progress_notice(struct gaim_connection *gc, char *why) 1399 void hide_login_progress_notice(struct gaim_connection *gc, char *why)
1400 { 1400 {
1401 hide_login_progress_common(gc, why, _("Notice"), gc->username); 1401 hide_login_progress_common(gc, why, _("Notice"), gc->username);
1402 } 1402 }
1403 1403
1404 /*
1405 * Like hide_login_progress(), but for non-signon error messages.
1406 *
1407 */
1408 void hide_login_progress_error(struct gaim_connection *gc, char *why)
1409 {
1410 char buf[2048];
1411 g_snprintf(buf, sizeof(buf), _("%s has been signed off"), gc->username);
1412 hide_login_progress_common(gc, why, _("Connection Error"), buf);
1413 }
1414
1404 void signoff_all() 1415 void signoff_all()
1405 { 1416 {
1406 GSList *c = connections; 1417 GSList *c = connections;
1407 struct gaim_connection *g = NULL; 1418 struct gaim_connection *g = NULL;
1408 1419