comparison src/gtkaccount.c @ 5567:cc9ddec20010

[gaim-migrate @ 5969] More fixing. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Fri, 30 May 2003 18:44:03 +0000
parents 9eb5b13fd412
children 5d2911d6d38e
comparison
equal deleted inserted replaced
5566:9896e9068bc4 5567:cc9ddec20010
96 vbox = gtk_vbox_new(FALSE, 12); 96 vbox = gtk_vbox_new(FALSE, 12);
97 gtk_container_add(GTK_CONTAINER(win), vbox); 97 gtk_container_add(GTK_CONTAINER(win), vbox);
98 gtk_widget_show(vbox); 98 gtk_widget_show(vbox);
99 99
100 /* Setup the scrolled window that will contain the list of accounts. */ 100 /* Setup the scrolled window that will contain the list of accounts. */
101 #if 0
101 sw = __create_accounts_list(); 102 sw = __create_accounts_list();
102 gtk_box_pack_start(GTK_BOX(vbox), sw, TRUE, TRUE, 0); 103 gtk_box_pack_start(GTK_BOX(vbox), sw, TRUE, TRUE, 0);
103 gtk_widget_show(sw); 104 gtk_widget_show(sw);
105 #endif
104 106
105 /* Separator... */ 107 /* Separator... */
106 sep = gtk_hseparator_new(); 108 sep = gtk_hseparator_new();
107 gtk_box_pack_start(GTK_BOX(vbox), sep, FALSE, FALSE, 0); 109 gtk_box_pack_start(GTK_BOX(vbox), sep, FALSE, FALSE, 0);
108 gtk_widget_show(sep); 110 gtk_widget_show(sep);