diff options
author | hobbs <hobbs> | 2003-02-09 07:51:04 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2003-02-09 07:51:04 (GMT) |
commit | 04429f2a6222f283c8296af146530bab3273382b (patch) | |
tree | b79fc634d0aff4e391f0eefa1abdfca0cf21f34c /macosx | |
parent | 7cbbdcb1ea458bfaaa68bb1fc0cdb9351d11ab7c (diff) | |
download | tk-04429f2a6222f283c8296af146530bab3273382b.zip tk-04429f2a6222f283c8296af146530bab3273382b.tar.gz tk-04429f2a6222f283c8296af146530bab3273382b.tar.bz2 |
2003-02-05 Fred Fish <fnf@intrinsity.com>
* macosx/tkMacOSXWm.c (Tk_SetGrid): Fix precedence problem with
* mac/tkMacWm.c (Tk_SetGrid): '==' and '|'.
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/tkMacOSXWm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/tkMacOSXWm.c b/macosx/tkMacOSXWm.c index a8cf4ab..7264f19 100644 --- a/macosx/tkMacOSXWm.c +++ b/macosx/tkMacOSXWm.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacOSXWm.c,v 1.5 2002/09/23 07:21:12 wolfsuit Exp $ + * RCS: @(#) $Id: tkMacOSXWm.c,v 1.6 2003/02/09 07:51:04 hobbs Exp $ */ #include <Carbon/Carbon.h> @@ -2675,7 +2675,7 @@ Tk_SetGrid( && (wmPtr->widthInc == widthInc) && (wmPtr->heightInc == heightInc) && ((wmPtr->sizeHintsFlags & (PBaseSize|PResizeInc)) - == PBaseSize|PResizeInc)) { + == (PBaseSize|PResizeInc))) { return; } |