| 833 } |
833 } |
| 834 |
834 |
| 835 void hide_login_progress(struct gaim_connection *gc, char *why) |
835 void hide_login_progress(struct gaim_connection *gc, char *why) |
| 836 { |
836 { |
| 837 char buf[2048]; |
837 char buf[2048]; |
| 838 sprintf(buf, _("%s was unable to sign on: %s"), gc->username, why); |
838 sprintf(buf, _("%s\n%s was unable to sign on: %s"), full_date(), gc->username, why); |
| 839 do_error_dialog(buf, _("Signon Error")); |
839 do_error_dialog(buf, _("Signon Error")); |
| 840 if (gc->meter) |
840 if (gc->meter) |
| 841 gtk_widget_destroy(gc->meter); |
841 gtk_widget_destroy(gc->meter); |
| 842 gc->meter = NULL; |
842 gc->meter = NULL; |
| 843 } |
843 } |