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.
This commit is contained in:
BST 1998 Tony Gale
1998-04-06 08:13:48 +00:00
committed by Tony Gale
parent c4089778fb
commit d7aa6a88fb
8 changed files with 43 additions and 1 deletions

View File

@ -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);