comparison src/gtkconn.c @ 5883:f5b0c6073264

[gaim-migrate @ 6315] Removed the last bit of actual UI from connection.c. It still includes ui.h, but that's because of the stupid away stuff. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sun, 15 Jun 2003 06:14:47 +0000
parents 059d95c67cda
children 02569519d0cc
comparison
equal deleted inserted replaced
5882:ea6dfabdf60f 5883:f5b0c6073264
223 223
224 static void gaim_gtk_connection_disconnected(GaimConnection *gc, 224 static void gaim_gtk_connection_disconnected(GaimConnection *gc,
225 const char *reason) 225 const char *reason)
226 { 226 {
227 struct signon_meter *meter = find_signon_meter(gc); 227 struct signon_meter *meter = find_signon_meter(gc);
228
229 update_privacy_connections();
230
228 if(meter) 231 if(meter)
229 kill_meter(meter, _("Done.")); 232 kill_meter(meter, _("Done."));
233
234 if (gaim_connections_get_all() != NULL)
235 return;
236
237 destroy_all_dialogs();
238
239 gaim_blist_destroy();
240
241 show_login();
230 } 242 }
231 243
232 static void gaim_gtk_connection_notice(GaimConnection *gc, 244 static void gaim_gtk_connection_notice(GaimConnection *gc,
233 const char *text) 245 const char *text)
234 { 246 {