comparison plugins/timestamp.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 1f901484599d
children dae79aefac8d
comparison
equal deleted inserted replaced
5529:e7747cae9710 5530:2c4c975620f0
67 GtkWidget *spinner, *button; 67 GtkWidget *spinner, *button;
68 68
69 ret = gtk_vbox_new(FALSE, 18); 69 ret = gtk_vbox_new(FALSE, 18);
70 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); 70 gtk_container_set_border_width (GTK_CONTAINER (ret), 12);
71 71
72 frame = make_frame(ret, _("iChat Timestamp")); 72 frame = gaim_gtk_make_frame(ret, _("iChat Timestamp"));
73 vbox = gtk_vbox_new(FALSE, 5); 73 vbox = gtk_vbox_new(FALSE, 5);
74 gtk_container_add(GTK_CONTAINER(frame), vbox); 74 gtk_container_add(GTK_CONTAINER(frame), vbox);
75 75
76 hbox = gtk_hbox_new(FALSE, 5); 76 hbox = gtk_hbox_new(FALSE, 5);
77 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 5); 77 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 5);