forked from AuroraMiddleware/gtk
minor menu example comment fix (feeling my way back in after a long
* docs/tutorial/gtk-tut.sgml, examples/menu/menu.c: minor menu example comment fix (feeling my way back in after a long absence)
This commit is contained in:
parent
3c6c7909cb
commit
f7fa241177
@ -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>
|
Wed Aug 14 08:07:53 2002 HideToshi Tajima <hidetoshi.tajima@sun.com>
|
||||||
|
|
||||||
* gtk/gtkselection.c (gtk_selection_init): initialize
|
* gtk/gtkselection.c (gtk_selection_init): initialize
|
||||||
|
@ -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>
|
Wed Aug 14 08:07:53 2002 HideToshi Tajima <hidetoshi.tajima@sun.com>
|
||||||
|
|
||||||
* gtk/gtkselection.c (gtk_selection_init): initialize
|
* gtk/gtkselection.c (gtk_selection_init): initialize
|
||||||
|
@ -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>
|
Wed Aug 14 08:07:53 2002 HideToshi Tajima <hidetoshi.tajima@sun.com>
|
||||||
|
|
||||||
* gtk/gtkselection.c (gtk_selection_init): initialize
|
* gtk/gtkselection.c (gtk_selection_init): initialize
|
||||||
|
@ -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>
|
Wed Aug 14 08:07:53 2002 HideToshi Tajima <hidetoshi.tajima@sun.com>
|
||||||
|
|
||||||
* gtk/gtkselection.c (gtk_selection_init): initialize
|
* gtk/gtkselection.c (gtk_selection_init): initialize
|
||||||
|
@ -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>
|
Wed Aug 14 08:07:53 2002 HideToshi Tajima <hidetoshi.tajima@sun.com>
|
||||||
|
|
||||||
* gtk/gtkselection.c (gtk_selection_init): initialize
|
* gtk/gtkselection.c (gtk_selection_init): initialize
|
||||||
|
@ -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>
|
Wed Aug 14 08:07:53 2002 HideToshi Tajima <hidetoshi.tajima@sun.com>
|
||||||
|
|
||||||
* gtk/gtkselection.c (gtk_selection_init): initialize
|
* gtk/gtkselection.c (gtk_selection_init): initialize
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<book id="gtk-tut">
|
<book id="gtk-tut">
|
||||||
|
|
||||||
<bookinfo>
|
<bookinfo>
|
||||||
<date>February 25, 2002</date>
|
<date>August 15, 2002</date>
|
||||||
<title>GTK+ 2.0 Tutorial</title>
|
<title>GTK+ 2.0 Tutorial</title>
|
||||||
<authorgroup>
|
<authorgroup>
|
||||||
<author>
|
<author>
|
||||||
@ -8475,7 +8475,7 @@ int main( int argc,
|
|||||||
menu = gtk_menu_new ();
|
menu = gtk_menu_new ();
|
||||||
|
|
||||||
/* Next we make a little loop that makes three menu-entries for "test-menu".
|
/* 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"
|
* 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,
|
* signal on each of the menu items and setup a callback for it,
|
||||||
* but it's omitted here to save space. */
|
* 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>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
|
<para>Permission is granted to make and distribute verbatim copies of this
|
||||||
manual provided the copyright notice and this permission notice are
|
manual provided the copyright notice and this permission notice are
|
||||||
|
@ -35,7 +35,7 @@ int main( int argc,
|
|||||||
menu = gtk_menu_new ();
|
menu = gtk_menu_new ();
|
||||||
|
|
||||||
/* Next we make a little loop that makes three menu-entries for "test-menu".
|
/* 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"
|
* 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,
|
* signal on each of the menu items and setup a callback for it,
|
||||||
* but it's omitted here to save space. */
|
* but it's omitted here to save space. */
|
||||||
|
Loading…
Reference in New Issue
Block a user