diff options
author | das <das> | 2008-06-19 00:11:23 (GMT) |
---|---|---|
committer | das <das> | 2008-06-19 00:11:23 (GMT) |
commit | 0d185bbe07e150dd2b1a72ff8d5ab7df5997233e (patch) | |
tree | 9072eefc3a4bd930989eab68607df565b6cda225 /macosx | |
parent | e499550244d0da5f7d66ed3af99710f902d64d75 (diff) | |
download | tk-0d185bbe07e150dd2b1a72ff8d5ab7df5997233e.zip tk-0d185bbe07e150dd2b1a72ff8d5ab7df5997233e.tar.gz tk-0d185bbe07e150dd2b1a72ff8d5ab7df5997233e.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 7ad33c8..7516f4c 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.3.2.26 2007/11/09 06:26:56 das Exp $ + * RCS: @(#) $Id: tkMacOSXWindowEvent.c,v 1.3.2.27 2008/06/19 00:11:23 das Exp $ */ #include "tkMacOSXPrivate.h" @@ -418,7 +418,7 @@ TkMacOSXProcessWindowEvent( break; } - return 0; + return eventFound; } /* |