diff 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
line wrap: on
line diff
--- a/src/gtkaccount.c	Mon Jun 02 22:30:25 2003 +0000
+++ b/src/gtkaccount.c	Tue Jun 03 02:00:33 2003 +0000
@@ -99,6 +99,9 @@
 	GtkWidget *protocol_frame;
 	GtkWidget *register_check;
 
+	/* Proxy Options */
+	GtkWidget *proxy_frame;
+
 	GtkSizeGroup *sg;
 
 } AccountPrefsDialog;
@@ -490,6 +493,14 @@
 }
 
 static void
+__add_proxy_options_frame(AccountPrefsDialog *dialog, GtkWidget *parent)
+{
+	if (dialog->proxy_frame != NULL)
+		gtk_widget_destroy(dialog->proxy_frame);
+
+}
+
+static void
 __show_account_prefs(AccountPrefsDialogType type, GaimAccount *account)
 {
 	AccountPrefsDialog *dialog;