summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLog.pre-2-106
-rw-r--r--ChangeLog.pre-2-26
-rw-r--r--ChangeLog.pre-2-46
-rw-r--r--ChangeLog.pre-2-66
-rw-r--r--ChangeLog.pre-2-86
-rwxr-xr-xdocs/tutorial/gtk-tut.sgml6
-rw-r--r--examples/menu/menu.c2
8 files changed, 40 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 60e1c2d36a..1665e24151 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Thu Aug 15 22:46:02 BST 2002 Tony Gale <gale@gtk.org>
+
+ * docs/tutorial/gtk-tut.sgml, examples/menu/menu.c:
+ minor menu example comment fix
+ (feeling my way back in after a long absence)
+
Wed Aug 14 08:07:53 2002 HideToshi Tajima <hidetoshi.tajima@sun.com>
* gtk/gtkselection.c (gtk_selection_init): initialize
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 60e1c2d36a..1665e24151 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,3 +1,9 @@
+Thu Aug 15 22:46:02 BST 2002 Tony Gale <gale@gtk.org>
+
+ * docs/tutorial/gtk-tut.sgml, examples/menu/menu.c:
+ minor menu example comment fix
+ (feeling my way back in after a long absence)
+
Wed Aug 14 08:07:53 2002 HideToshi Tajima <hidetoshi.tajima@sun.com>
* gtk/gtkselection.c (gtk_selection_init): initialize
diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2
index 60e1c2d36a..1665e24151 100644
--- a/ChangeLog.pre-2-2
+++ b/ChangeLog.pre-2-2
@@ -1,3 +1,9 @@
+Thu Aug 15 22:46:02 BST 2002 Tony Gale <gale@gtk.org>
+
+ * docs/tutorial/gtk-tut.sgml, examples/menu/menu.c:
+ minor menu example comment fix
+ (feeling my way back in after a long absence)
+
Wed Aug 14 08:07:53 2002 HideToshi Tajima <hidetoshi.tajima@sun.com>
* gtk/gtkselection.c (gtk_selection_init): initialize
diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4
index 60e1c2d36a..1665e24151 100644
--- a/ChangeLog.pre-2-4
+++ b/ChangeLog.pre-2-4
@@ -1,3 +1,9 @@
+Thu Aug 15 22:46:02 BST 2002 Tony Gale <gale@gtk.org>
+
+ * docs/tutorial/gtk-tut.sgml, examples/menu/menu.c:
+ minor menu example comment fix
+ (feeling my way back in after a long absence)
+
Wed Aug 14 08:07:53 2002 HideToshi Tajima <hidetoshi.tajima@sun.com>
* gtk/gtkselection.c (gtk_selection_init): initialize
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index 60e1c2d36a..1665e24151 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -1,3 +1,9 @@
+Thu Aug 15 22:46:02 BST 2002 Tony Gale <gale@gtk.org>
+
+ * docs/tutorial/gtk-tut.sgml, examples/menu/menu.c:
+ minor menu example comment fix
+ (feeling my way back in after a long absence)
+
Wed Aug 14 08:07:53 2002 HideToshi Tajima <hidetoshi.tajima@sun.com>
* gtk/gtkselection.c (gtk_selection_init): initialize
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index 60e1c2d36a..1665e24151 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -1,3 +1,9 @@
+Thu Aug 15 22:46:02 BST 2002 Tony Gale <gale@gtk.org>
+
+ * docs/tutorial/gtk-tut.sgml, examples/menu/menu.c:
+ minor menu example comment fix
+ (feeling my way back in after a long absence)
+
Wed Aug 14 08:07:53 2002 HideToshi Tajima <hidetoshi.tajima@sun.com>
* gtk/gtkselection.c (gtk_selection_init): initialize
diff --git a/docs/tutorial/gtk-tut.sgml b/docs/tutorial/gtk-tut.sgml
index 9975522650..9e394aae1f 100755
--- a/docs/tutorial/gtk-tut.sgml
+++ b/docs/tutorial/gtk-tut.sgml
@@ -5,7 +5,7 @@
<book id="gtk-tut">
<bookinfo>
- <date>February 25, 2002</date>
+ <date>August 15, 2002</date>
<title>GTK+ 2.0 Tutorial</title>
<authorgroup>
<author>
@@ -8475,7 +8475,7 @@ int main( int argc,
menu = gtk_menu_new ();
/* Next we make a little loop that makes three menu-entries for "test-menu".
- * Notice the call to gtk_menu_append. Here we are adding a list of
+ * Notice the call to gtk_menu_shell_append. Here we are adding a list of
* menu items to our menu. Normally, we'd also catch the "clicked"
* signal on each of the menu items and setup a callback for it,
* but it's omitted here to save space. */
@@ -13087,7 +13087,7 @@ The GLib text was in turn based on material developed by Damon Chaplin
<para>The GTK Tutorial is Copyright (C) 1997 Ian Main. </para>
-<para>Copyright (C) 1998-1999 Tony Gale.</para>
+<para>Copyright (C) 1998-2002 Tony Gale.</para>
<para>Permission is granted to make and distribute verbatim copies of this
manual provided the copyright notice and this permission notice are
diff --git a/examples/menu/menu.c b/examples/menu/menu.c
index 132602fae2..4747ef889f 100644
--- a/examples/menu/menu.c
+++ b/examples/menu/menu.c
@@ -35,7 +35,7 @@ int main( int argc,
menu = gtk_menu_new ();
/* Next we make a little loop that makes three menu-entries for "test-menu".
- * Notice the call to gtk_menu_append. Here we are adding a list of
+ * Notice the call to gtk_menu_shell_append. Here we are adding a list of
* menu items to our menu. Normally, we'd also catch the "clicked"
* signal on each of the menu items and setup a callback for it,
* but it's omitted here to save space. */