diff src/multi.c @ 5530:2c4c975620f0

[gaim-migrate @ 5930] Okay, several changes in this commit. - We now have gtkprefs.h. - We have a place where we can add UI prefs. - show_prefs() -> gaim_gtk_prefs_show(). - make_frame() -> gaim_gtk_make_frame(). - The debug window is the first thing to have prefs. You can even turn off the toolbar if you edit ~/.gaim/prefs.xml. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Mon, 26 May 2003 08:30:48 +0000
parents cce2d7868c78
children b7319c094153
line wrap: on
line diff
--- a/src/multi.c	Mon May 26 07:06:20 2003 +0000
+++ b/src/multi.c	Mon May 26 08:30:48 2003 +0000
@@ -744,7 +744,7 @@
 		gtk_widget_destroy(ma->login_frame);
 	ma->login_frame = NULL;
 
-	frame = make_frame(box, _("Login Options"));
+	frame = gaim_gtk_make_frame(box, _("Login Options"));
 	ma->login_frame = gtk_widget_get_parent(gtk_widget_get_parent(frame));
 	gtk_box_reorder_child(GTK_BOX(box), ma->login_frame, 0);
 
@@ -884,7 +884,7 @@
 		gtk_widget_destroy(ma->user_frame);
 	ma->user_frame = NULL;
 
-	frame = make_frame(box, _("User Options"));
+	frame = gaim_gtk_make_frame(box, _("User Options"));
 	ma->user_frame = gtk_widget_get_parent(gtk_widget_get_parent(frame));
 	gtk_box_reorder_child(GTK_BOX(box), ma->user_frame, 1);
 	gtk_widget_show_all(ma->user_frame);
@@ -956,7 +956,7 @@
 		return;
 
 	g_snprintf(buf, sizeof(buf), _("%s Options"), p->info->name);
-	frame = make_frame(box, buf);
+	frame = gaim_gtk_make_frame(box, buf);
 
 	/* BLEH */
 	ma->proto_frame = gtk_widget_get_parent(gtk_widget_get_parent(frame));
@@ -1032,7 +1032,7 @@
 	if(ma->account)
 		gpi = ma->account->gpi;
 
-	frame = make_frame(box, _("Proxy Options"));
+	frame = gaim_gtk_make_frame(box, _("Proxy Options"));
 	ma->proxy_frame = gtk_widget_get_parent(gtk_widget_get_parent(frame));
 	gtk_widget_show_all(ma->proxy_frame);