comparison src/gtkconn.c @ 9730:c9ac1976ef01

[gaim-migrate @ 10591] I shuffled lots of stuff around again. See plugins/ChangeLog.API for the list of renamed functions. I'm trying to clean up gtkdialogs.c/.h, so I moved the away stuff into away.c/.h I also reduced the minimum buddy list height from 200 pixels to 100 pixels. I just realized that that's also the default height used when you don't have a prefs.xml, which is bad. I think I'm going to set the default height to around 300 pixels. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 09 Aug 2004 03:49:46 +0000
parents 4d05b6e9e9cd
children 4a15962c344a
comparison
equal deleted inserted replaced
9729:f44ae9331afc 9730:c9ac1976ef01
21 */ 21 */
22 #include "gtkinternal.h" 22 #include "gtkinternal.h"
23 23
24 #include "account.h" 24 #include "account.h"
25 #include "debug.h" 25 #include "debug.h"
26 #include "gtkdialogs.h"
27 #include "notify.h" 26 #include "notify.h"
28 #include "prefs.h" 27 #include "prefs.h"
29 #include "stock.h" 28 #include "stock.h"
30 #include "util.h" 29 #include "util.h"
31 30
31 #include "away.h"
32 #include "gtkblist.h" 32 #include "gtkblist.h"
33 #include "gtkdialogs.h"
33 #include "gtkutils.h" 34 #include "gtkutils.h"
34 35
35 /* 36 /*
36 * The next couple of functions deal with the connection dialog 37 * The next couple of functions deal with the connection dialog
37 */ 38 */
75 gaim_connection_destroy(meter->account->gc); 76 gaim_connection_destroy(meter->account->gc);
76 } else { 77 } else {
77 kill_meter(meter, _("Done.")); 78 kill_meter(meter, _("Done."));
78 79
79 if (gaim_connections_get_all() == NULL) { 80 if (gaim_connections_get_all() == NULL) {
80 destroy_all_dialogs(); 81 gaim_gtkdialogs_destroy_all();
81 82
82 gaim_blist_destroy(); 83 gaim_blist_destroy();
83 84
84 show_login(); 85 show_login();
85 } 86 }
259 kill_meter(meter, _("Done.")); 260 kill_meter(meter, _("Done."));
260 261
261 if (gaim_connections_get_all() != NULL) 262 if (gaim_connections_get_all() != NULL)
262 return; 263 return;
263 264
264 destroy_all_dialogs(); 265 gaim_gtkdialogs_destroy_all();
265 266
266 gaim_blist_destroy(); 267 gaim_blist_destroy();
267 268
268 show_login(); 269 show_login();
269 } 270 }