diff plugins/spellchk.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 6d1707dc8c3d
children 1c55b1540e18
line wrap: on
line diff
--- a/plugins/spellchk.c	Mon May 26 07:06:20 2003 +0000
+++ b/plugins/spellchk.c	Mon May 26 08:30:48 2003 +0000
@@ -408,7 +408,7 @@
 	ret = gtk_vbox_new(FALSE, 18);
 	gtk_container_set_border_width (GTK_CONTAINER (ret), 12);
 	
-	vbox = make_frame(ret, _("Text Replacements"));
+	vbox = gaim_gtk_make_frame(ret, _("Text Replacements"));
 	gtk_container_set_border_width(GTK_CONTAINER(vbox), 4);
 	gtk_widget_set_size_request(vbox, 300, -1);
 	gtk_widget_show (vbox);
@@ -470,7 +470,7 @@
 
 	gtk_widget_show(button);
 
-	vbox = make_frame(ret, _("Add a new text replacement"));
+	vbox = gaim_gtk_make_frame(ret, _("Add a new text replacement"));
 	gtk_widget_set_size_request(vbox, 300, -1);
 
 	hbox = gtk_hbox_new(FALSE, 2);