diff src/gtkpluginpref.c @ 11243:a511b77a368b

[gaim-migrate @ 13408] sf patch #1246384, from shiyee "This patch globally defines spacings and boreders according to the Gnome Human Interfaces Guidelines, and uses those defines where appropriate. No visual changes are made, but the the intention is that the defines should help promote uniformness." committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Fri, 12 Aug 2005 23:53:28 +0000
parents 26eac2362c32
children bfbb1798535e
line wrap: on
line diff
--- a/src/gtkpluginpref.c	Fri Aug 12 22:30:36 2005 +0000
+++ b/src/gtkpluginpref.c	Fri Aug 12 23:53:28 2005 +0000
@@ -65,7 +65,7 @@
 			break;
 		case GAIM_PLUGIN_PREF_NONE:
 		default:
-			hbox = gtk_hbox_new(FALSE, 6);
+			hbox = gtk_hbox_new(FALSE, GAIM_HIG_BOX_SPACE);
 			gtk_widget_show(hbox);
 			gtk_box_pack_start(GTK_BOX(parent), hbox, FALSE, FALSE, 0);
 
@@ -146,7 +146,7 @@
 	sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
 
 	parent = ret = gtk_vbox_new(FALSE, 16);
-	gtk_container_set_border_width(GTK_CONTAINER(ret), 12);
+	gtk_container_set_border_width(GTK_CONTAINER(ret), GAIM_HIG_BORDER);
 	gtk_widget_show(ret);
 
 	for(pp = gaim_plugin_pref_frame_get_prefs(frame);