comparison pidgin/gtkprefs.c @ 18032:fbebe15c91a7

propagate from branch 'im.pidgin.pidgin' (head bdd3cb040100fe925456b862d03cc6c5a61648ef) to branch 'im.pidgin.pidgin.2.1.0' (head d848f911176cfb2100a9f60b1d6bacdfe86e956e)
author Luke Schierer <lschiere@pidgin.im>
date Sat, 02 Jun 2007 13:09:49 +0000
parents 8e8da9a1eaac 92e27556160c
children 6b7b13adb9b1
comparison
equal deleted inserted replaced
17651:79ecaab86f91 18032:fbebe15c91a7
1985 /* (that should have been "effect," right?) */ 1985 /* (that should have been "effect," right?) */
1986 1986
1987 /* Back to instant-apply! I win! BU-HAHAHA! */ 1987 /* Back to instant-apply! I win! BU-HAHAHA! */
1988 1988
1989 /* Create the window */ 1989 /* Create the window */
1990 prefs = gtk_window_new(GTK_WINDOW_TOPLEVEL); 1990 prefs = pidgin_create_window(_("Preferences"), PIDGIN_HIG_BORDER, "preferences", FALSE);
1991 gtk_window_set_role(GTK_WINDOW(prefs), "preferences");
1992 gtk_window_set_title(GTK_WINDOW(prefs), _("Preferences"));
1993 gtk_window_set_resizable (GTK_WINDOW(prefs), FALSE);
1994 gtk_container_set_border_width(GTK_CONTAINER(prefs), PIDGIN_HIG_BORDER);
1995 g_signal_connect(G_OBJECT(prefs), "destroy", 1991 g_signal_connect(G_OBJECT(prefs), "destroy",
1996 G_CALLBACK(delete_prefs), NULL); 1992 G_CALLBACK(delete_prefs), NULL);
1997 1993
1998 vbox = gtk_vbox_new(FALSE, PIDGIN_HIG_BORDER); 1994 vbox = gtk_vbox_new(FALSE, PIDGIN_HIG_BORDER);
1999 gtk_container_add(GTK_CONTAINER(prefs), vbox); 1995 gtk_container_add(GTK_CONTAINER(prefs), vbox);