diff options
author | das <das> | 2005-11-27 06:47:25 (GMT) |
---|---|---|
committer | das <das> | 2005-11-27 06:47:25 (GMT) |
commit | f432e8f42b0a18b776ca2844adf85b835e9276f1 (patch) | |
tree | e03ac3df3033b2b795bee3ff312563a29bc26a4a /macosx/tkMacOSXMenu.c | |
parent | e048db35bf80b2c5c72960f1307eeff6f5d0e2e7 (diff) | |
download | tk-f432e8f42b0a18b776ca2844adf85b835e9276f1.zip tk-f432e8f42b0a18b776ca2844adf85b835e9276f1.tar.gz tk-f432e8f42b0a18b776ca2844adf85b835e9276f1.tar.bz2 |
typo in last commit
Diffstat (limited to 'macosx/tkMacOSXMenu.c')
-rw-r--r-- | macosx/tkMacOSXMenu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/tkMacOSXMenu.c b/macosx/tkMacOSXMenu.c index 9b11c88..c3b5ce1 100644 --- a/macosx/tkMacOSXMenu.c +++ b/macosx/tkMacOSXMenu.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacOSXMenu.c,v 1.22 2005/11/27 06:37:31 das Exp $ + * RCS: @(#) $Id: tkMacOSXMenu.c,v 1.23 2005/11/27 06:47:25 das Exp $ */ #include "tkMacOSXInt.h" #include "tkMenubutton.h" @@ -21,7 +21,7 @@ #if !defined(MAC_OS_X_VERSION_10_3) || \ (MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_3) /* Define constants only available on Mac OS X 10.3 or later */ - #define kMenuAttrDoNotUseUserCommandKeys = (1 << 7) + #define kMenuAttrDoNotUseUserCommandKeys (1 << 7) #endif #define USE_TK_MDEF |