diff src/gtkpounce.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 ad445074d239
children 9eb5b13fd412
line wrap: on
line diff
--- a/src/gtkpounce.c	Mon May 26 07:06:20 2003 +0000
+++ b/src/gtkpounce.c	Mon May 26 08:30:48 2003 +0000
@@ -510,7 +510,7 @@
 	gtk_box_pack_start(GTK_BOX(vbox1), vbox2, TRUE, TRUE, 0);
 
 	/* Create the "Pounce Who" frame. */
-	frame = make_frame(vbox2, _("Pounce Who"));
+	frame = gaim_gtk_make_frame(vbox2, _("Pounce Who"));
 
 	/* Account: */
 	hbox = gtk_hbox_new(FALSE, 6);
@@ -551,7 +551,7 @@
 	}
 
 	/* Create the "Pounce When" frame. */
-	frame = make_frame(vbox2, _("Pounce When"));
+	frame = gaim_gtk_make_frame(vbox2, _("Pounce When"));
 
 	table = gtk_table_new(2, 4, FALSE);
 	gtk_container_add(GTK_CONTAINER(frame), table);
@@ -602,7 +602,7 @@
 	gtk_widget_show(dialog->stop_typing);
 
 	/* Create the "Pounce Action" frame. */
-	frame = make_frame(vbox2, _("Pounce Action"));
+	frame = gaim_gtk_make_frame(vbox2, _("Pounce Action"));
 
 	table = gtk_table_new(3, 5, FALSE);
 	gtk_container_add(GTK_CONTAINER(frame), table);