diff options
author | BST 1998 Tony Gale <gale@gtk.org> | 1998-04-06 08:13:48 +0000 |
---|---|---|
committer | Tony Gale <gale@src.gnome.org> | 1998-04-06 08:13:48 +0000 |
commit | d7aa6a88fbe1a06517f035bb84983a926a490674 (patch) | |
tree | 0e3140378bad4eeaaedad822fb9722d3bb693615 /examples | |
parent | c4089778fb442e80038231b391bb4854c8f5b8bf (diff) | |
download | gtk+-d7aa6a88fbe1a06517f035bb84983a926a490674.tar.gz |
Change a missed "delete_event" return value description from TRUE to
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 'examples')
-rw-r--r-- | examples/helloworld/helloworld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/helloworld/helloworld.c b/examples/helloworld/helloworld.c index ab5a74b201..63e24bca6f 100644 --- a/examples/helloworld/helloworld.c +++ b/examples/helloworld/helloworld.c @@ -56,7 +56,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); |