More GTK+ 2.0 updates.

* docs/tutorial/gtk-tut.sgml, docs/tutorial/images/*, examples/*: More
	 GTK+ 2.0 updates.

	* docs/tutorial/Makefile.am: build and dist the new tutorial, not
	the old Linuxdoc one.
This commit is contained in:
Matthias Clasen
2002-02-25 01:47:44 +00:00
parent 4d06c9d09f
commit 9f1363013f
14 changed files with 740 additions and 1600 deletions

View File

@ -20,7 +20,7 @@ int main( int argc,
GtkWidget *separator;
GSList *group;
gtk_init (&argc,&argv);
gtk_init (&argc, &argv);
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
@ -50,9 +50,8 @@ int main( int argc,
gtk_box_pack_start (GTK_BOX (box2), button, TRUE, TRUE, 0);
gtk_widget_show (button);
button = gtk_radio_button_new_with_label(
gtk_radio_button_get_group (GTK_RADIO_BUTTON (button)),
"button3");
button = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON (button),
"button3");
gtk_box_pack_start (GTK_BOX (box2), button, TRUE, TRUE, 0);
gtk_widget_show (button);