summaryrefslogtreecommitdiff
path: root/docs/faq
diff options
context:
space:
mode:
authorGMT 2002 Tony Gale <gale@gtk.org>2002-10-27 11:44:25 +0000
committerTony Gale <gale@src.gnome.org>2002-10-27 11:44:25 +0000
commitce575a009a3d39ccdfee964961012a6b45bcc2b7 (patch)
tree74da0f04aadd9f8216f2792820d737fc4cdcb515 /docs/faq
parent3889630f2b7b1c0e50b836dcb4327427868ec0fb (diff)
downloadgtk+-ce575a009a3d39ccdfee964961012a6b45bcc2b7.tar.gz
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
Diffstat (limited to 'docs/faq')
-rw-r--r--docs/faq/gtk-faq.sgml4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/faq/gtk-faq.sgml b/docs/faq/gtk-faq.sgml
index 82f3e8b48c..9fd5ca5367 100644
--- a/docs/faq/gtk-faq.sgml
+++ b/docs/faq/gtk-faq.sgml
@@ -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>