comparison src/multi.c @ 1114:c61f9c384413

[gaim-migrate @ 1124] update to STATUS, pass -Wall, and fix some applet stupidity for failed signons. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 21 Nov 2000 01:00:45 +0000
parents c73736fa0b7c
children 114cd406b022
comparison
equal deleted inserted replaced
1113:4efa1ca61a2a 1114:c61f9c384413
849 sprintf(buf, _("%s was unable to sign on: %s"), gc->username, why); 849 sprintf(buf, _("%s was unable to sign on: %s"), gc->username, why);
850 do_error_dialog(buf, _("Signon Error")); 850 do_error_dialog(buf, _("Signon Error"));
851 if (gc->meter) 851 if (gc->meter)
852 gtk_widget_destroy(gc->meter); 852 gtk_widget_destroy(gc->meter);
853 gc->meter = NULL; 853 gc->meter = NULL;
854 } 854 #ifdef USE_APPLET
855 if (g_slist_length(connections) > 1) {
856 /* we still have connections left, we can still be online */
857 set_user_state(online);
858 } else {
859 /* this connection is about to be destroyed, so let's go offline */
860 set_user_state(offline);
861 }
862 #endif
863 }