diff --git a/ChangeLog b/ChangeLog index b63f063901..a37d97c0c2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Jun 25 18:59:15 BST 2003 Tony Gale + + * docs/faq/gtk-faq.sgml: Fix typos. Update + thread example I missed yesterday. + 2003-06-24 Matthias Clasen * gtk/gtkspinbutton.c (gtk_spin_button_class_init): Add a blurb for shadow_type. diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index b63f063901..a37d97c0c2 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +Wed Jun 25 18:59:15 BST 2003 Tony Gale + + * docs/faq/gtk-faq.sgml: Fix typos. Update + thread example I missed yesterday. + 2003-06-24 Matthias Clasen * gtk/gtkspinbutton.c (gtk_spin_button_class_init): Add a blurb for shadow_type. diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index b63f063901..a37d97c0c2 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +Wed Jun 25 18:59:15 BST 2003 Tony Gale + + * docs/faq/gtk-faq.sgml: Fix typos. Update + thread example I missed yesterday. + 2003-06-24 Matthias Clasen * gtk/gtkspinbutton.c (gtk_spin_button_class_init): Add a blurb for shadow_type. diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index b63f063901..a37d97c0c2 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +Wed Jun 25 18:59:15 BST 2003 Tony Gale + + * docs/faq/gtk-faq.sgml: Fix typos. Update + thread example I missed yesterday. + 2003-06-24 Matthias Clasen * gtk/gtkspinbutton.c (gtk_spin_button_class_init): Add a blurb for shadow_type. diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index b63f063901..a37d97c0c2 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +Wed Jun 25 18:59:15 BST 2003 Tony Gale + + * docs/faq/gtk-faq.sgml: Fix typos. Update + thread example I missed yesterday. + 2003-06-24 Matthias Clasen * gtk/gtkspinbutton.c (gtk_spin_button_class_init): Add a blurb for shadow_type. diff --git a/docs/faq/gtk-faq.sgml b/docs/faq/gtk-faq.sgml index 02dd4227e6..e80bc9a79c 100644 --- a/docs/faq/gtk-faq.sgml +++ b/docs/faq/gtk-faq.sgml @@ -2,7 +2,7 @@ - June 24th 2003 + June 25th 2003 GTK+ FAQ @@ -698,9 +698,7 @@ presents a list of GTK+ bindings. the gtkmm package, which is a wrapper for GTK+. You can find the home page at - http://www.gtkmm.org/. The FTP site is - - ftp://ftp.gtk.org/pub/gtk/gtk--. + http://www.gtkmm.org/. the VDK package, which was built as @@ -851,7 +849,7 @@ out there you can look at. libglade API docs ( http://developer.gnome.org/doc/API/2.0/libglade/libglade-notes.html#libglade-basics) - +. @@ -1194,7 +1192,11 @@ main (int argc, char *argv[]) { GtkWidget *window; + /* init threads */ g_thread_init(NULL); + gdk_threads_init(); + + /* init gtk */ gtk_init(&argc, &argv); window = create_window(); @@ -1204,7 +1206,7 @@ main (int argc, char *argv[]) gtk_main(); gdk_threads_leave(); - return(0); + return 0; } @@ -1395,7 +1397,7 @@ XFlush() directly: -#include +#include <gdk/gdkx.h> void my_flush_commands (void) {