diff --git a/ChangeLog b/ChangeLog index 78288d7680..bb5f3ab08d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Thu Mar 1 13:14:27 GMT 2001 Tony Gale + + * docs/tutorial/gtk-tut.sgml: Minor corrections + Wed Feb 28 16:36:46 2001 Jonathan Blandford * gtk/gtktreemodel.c (gtk_tree_row_reference_*): Sanitize diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 78288d7680..bb5f3ab08d 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,7 @@ +Thu Mar 1 13:14:27 GMT 2001 Tony Gale + + * docs/tutorial/gtk-tut.sgml: Minor corrections + Wed Feb 28 16:36:46 2001 Jonathan Blandford * gtk/gtktreemodel.c (gtk_tree_row_reference_*): Sanitize diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 78288d7680..bb5f3ab08d 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,7 @@ +Thu Mar 1 13:14:27 GMT 2001 Tony Gale + + * docs/tutorial/gtk-tut.sgml: Minor corrections + Wed Feb 28 16:36:46 2001 Jonathan Blandford * gtk/gtktreemodel.c (gtk_tree_row_reference_*): Sanitize diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 78288d7680..bb5f3ab08d 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,7 @@ +Thu Mar 1 13:14:27 GMT 2001 Tony Gale + + * docs/tutorial/gtk-tut.sgml: Minor corrections + Wed Feb 28 16:36:46 2001 Jonathan Blandford * gtk/gtktreemodel.c (gtk_tree_row_reference_*): Sanitize diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 78288d7680..bb5f3ab08d 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,7 @@ +Thu Mar 1 13:14:27 GMT 2001 Tony Gale + + * docs/tutorial/gtk-tut.sgml: Minor corrections + Wed Feb 28 16:36:46 2001 Jonathan Blandford * gtk/gtktreemodel.c (gtk_tree_row_reference_*): Sanitize diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 78288d7680..bb5f3ab08d 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,7 @@ +Thu Mar 1 13:14:27 GMT 2001 Tony Gale + + * docs/tutorial/gtk-tut.sgml: Minor corrections + Wed Feb 28 16:36:46 2001 Jonathan Blandford * gtk/gtktreemodel.c (gtk_tree_row_reference_*): Sanitize diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 78288d7680..bb5f3ab08d 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,7 @@ +Thu Mar 1 13:14:27 GMT 2001 Tony Gale + + * docs/tutorial/gtk-tut.sgml: Minor corrections + Wed Feb 28 16:36:46 2001 Jonathan Blandford * gtk/gtktreemodel.c (gtk_tree_row_reference_*): Sanitize diff --git a/docs/tutorial/gtk-tut.sgml b/docs/tutorial/gtk-tut.sgml index d3d9fb6b94..d7f6089c1e 100755 --- a/docs/tutorial/gtk-tut.sgml +++ b/docs/tutorial/gtk-tut.sgml @@ -2,7 +2,7 @@ - November 22nd 2000 + March 1st 2001 GTK+ 1.2 Tutorial @@ -3354,6 +3354,8 @@ styles. You can ignore this for now as the Frame /* example-start label label.c */ +#include <gtk/gtk.h> + int main( int argc, char *argv[] ) { @@ -6111,11 +6113,11 @@ void calendar_set_flags( CalendarData *calendar ) gint i; gint options=0; for (i=0;i<5;i++) - if (calendar-<settings[i]) + if (calendar->settings[i]) { options=options + (1<<i); } - if (calendar-<window) + if (calendar->window) gtk_calendar_display_options (GTK_CALENDAR (calendar->window), options); }