summaryrefslogtreecommitdiff
path: root/docs/gtk_tut.sgml
diff options
context:
space:
mode:
authorTony Gale <gale@src.gnome.org>1998-04-06 08:12:46 +0000
committerTony Gale <gale@src.gnome.org>1998-04-06 08:12:46 +0000
commitc4089778fb442e80038231b391bb4854c8f5b8bf (patch)
tree76c45ac618d5467df601ccca647a6ed79c4ddfcd /docs/gtk_tut.sgml
parent61ca241924aeb563c8a86206581af7f151504963 (diff)
downloadgdk-pixbuf-c4089778fb442e80038231b391bb4854c8f5b8bf.tar.gz
Mon Apr 6 08:08:49 BST 1998 Tony Gale <gale@gtk.org
* docs/gtk_tut.sgml examples/helloworld/helloworld.c: Change a missed "delete_event" return value description from TRUE to FALSE.
Diffstat (limited to 'docs/gtk_tut.sgml')
-rw-r--r--docs/gtk_tut.sgml4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/gtk_tut.sgml b/docs/gtk_tut.sgml
index c67e206f7..64fe5c4f5 100644
--- a/docs/gtk_tut.sgml
+++ b/docs/gtk_tut.sgml
@@ -10,7 +10,7 @@
name="&lt;imain@gtk.org&gt;"></tt>,
Tony Gale <tt><htmlurl url="mailto:gale@gtk.org"
name="&lt;gale@gtk.org&gt;"></tt>
-<date>April 4th, 1998
+<date>April 6th, 1998
<!-- ***************************************************************** -->
<sect>Introduction
@@ -213,7 +213,7 @@ int main (int argc, char *argv[])
/* here we connect the "destroy" event to a signal handler.
* This event occurs when we call gtk_widget_destroy() on the window,
- * or if we return 'TRUE' in the "delete_event" callback. */
+ * or if we return 'FALSE' in the "delete_event" callback. */
gtk_signal_connect (GTK_OBJECT (window), "destroy",
GTK_SIGNAL_FUNC (destroy), NULL);