minor cleanups, remove refs to gtk_menu_append

Sun Oct 27 11:41:37 GMT 2002  Tony Gale <gale@gtk.org>

        * docs/tutorial/gtk-tut.sgml:
        minor cleanups, remove refs to gtk_menu_append

        *docs/faq/gtk-faq.sgml: remove ref to gtk_menu_append
This commit is contained in:
GMT 2002 Tony Gale
2002-10-27 11:44:25 +00:00
committed by Tony Gale
parent 3889630f2b
commit ce575a009a
9 changed files with 74 additions and 12 deletions

View File

@ -2,7 +2,7 @@
<book>
<bookinfo>
<date>August 24th 2002</date>
<date>October 27th 2002</date>
<title>GTK+ FAQ</title>
<authorgroup>
<author>
@ -2531,7 +2531,7 @@ separation line in a menu, just insert an empty menu item:</para>
<programlisting role="C">
menuitem = gtk_menu_item_new();
gtk_menu_append(GTK_MENU(menu), menuitem);
gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
gtk_widget_show(menuitem);
</programlisting>