diff options
author | das <das> | 2008-06-19 00:11:17 (GMT) |
---|---|---|
committer | das <das> | 2008-06-19 00:11:17 (GMT) |
commit | 63ac67c1391d35c7ff66eec7d8fb0c11fad6c57e (patch) | |
tree | 36d55afd1993737ef6bbb6551165bdb0a511f085 /macosx | |
parent | 3f50f0e6ebcc92c525b99f0a122ef34ae65241b1 (diff) | |
download | tk-63ac67c1391d35c7ff66eec7d8fb0c11fad6c57e.zip tk-63ac67c1391d35c7ff66eec7d8fb0c11fad6c57e.tar.gz tk-63ac67c1391d35c7ff66eec7d8fb0c11fad6c57e.tar.bz2 |
* macosx/tkMacOSXWindowEvent.c (TkMacOSXProcessWindowEvent): fix
return value.
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/tkMacOSXWindowEvent.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/tkMacOSXWindowEvent.c b/macosx/tkMacOSXWindowEvent.c index 46b547d..7b92479 100644 --- a/macosx/tkMacOSXWindowEvent.c +++ b/macosx/tkMacOSXWindowEvent.c @@ -54,7 +54,7 @@ * software in accordance with the terms specified in this * license. * - * RCS: @(#) $Id: tkMacOSXWindowEvent.c,v 1.31 2007/12/13 15:27:10 dgp Exp $ + * RCS: @(#) $Id: tkMacOSXWindowEvent.c,v 1.31.2.1 2008/06/19 00:11:17 das Exp $ */ #include "tkMacOSXPrivate.h" @@ -418,7 +418,7 @@ TkMacOSXProcessWindowEvent( break; } - return 0; + return eventFound; } /* |