comparison src/gtkaccount.c @ 5681:46d7ad0dfa26

[gaim-migrate @ 6100] Rewrote the proxy code. It should now work with the new prefs, and it has a namespace and API too! committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 03 Jun 2003 02:00:33 +0000
parents 7867ae4836ac
children 861565bed110
comparison
equal deleted inserted replaced
5680:71cc0d5376c2 5681:46d7ad0dfa26
97 97
98 /* Protocol Options */ 98 /* Protocol Options */
99 GtkWidget *protocol_frame; 99 GtkWidget *protocol_frame;
100 GtkWidget *register_check; 100 GtkWidget *register_check;
101 101
102 /* Proxy Options */
103 GtkWidget *proxy_frame;
104
102 GtkSizeGroup *sg; 105 GtkSizeGroup *sg;
103 106
104 } AccountPrefsDialog; 107 } AccountPrefsDialog;
105 108
106 109
485 488
486 gtk_box_pack_start(GTK_BOX(vbox), dialog->register_check, 489 gtk_box_pack_start(GTK_BOX(vbox), dialog->register_check,
487 FALSE, FALSE, 0); 490 FALSE, FALSE, 0);
488 gtk_widget_show(dialog->register_check); 491 gtk_widget_show(dialog->register_check);
489 } 492 }
493 }
494
495 static void
496 __add_proxy_options_frame(AccountPrefsDialog *dialog, GtkWidget *parent)
497 {
498 if (dialog->proxy_frame != NULL)
499 gtk_widget_destroy(dialog->proxy_frame);
500
490 } 501 }
491 502
492 static void 503 static void
493 __show_account_prefs(AccountPrefsDialogType type, GaimAccount *account) 504 __show_account_prefs(AccountPrefsDialogType type, GaimAccount *account)
494 { 505 {