diff options
author | das <das@noemail.net> | 2005-11-27 06:47:25 (GMT) |
---|---|---|
committer | das <das@noemail.net> | 2005-11-27 06:47:25 (GMT) |
commit | 0c8a1d461c1a27ff2bdc39405dbd7e1f6aa1556c (patch) | |
tree | e03ac3df3033b2b795bee3ff312563a29bc26a4a | |
parent | 4730de2ef463921080bce514be5414f13d39326b (diff) | |
download | tk-0c8a1d461c1a27ff2bdc39405dbd7e1f6aa1556c.zip tk-0c8a1d461c1a27ff2bdc39405dbd7e1f6aa1556c.tar.gz tk-0c8a1d461c1a27ff2bdc39405dbd7e1f6aa1556c.tar.bz2 |
typo in last commit
FossilOrigin-Name: 0815b3ccee9c562b0434d7785ba8e8f3b5815731
-rw-r--r-- | macosx/tkMacOSXMenu.c | 4 | ||||
-rw-r--r-- | macosx/tkMacOSXMenubutton.c | 4 |
2 files changed, 4 insertions, 4 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 diff --git a/macosx/tkMacOSXMenubutton.c b/macosx/tkMacOSXMenubutton.c index 97284b9..f6ed8b9 100644 --- a/macosx/tkMacOSXMenubutton.c +++ b/macosx/tkMacOSXMenubutton.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacOSXMenubutton.c,v 1.7 2005/11/27 06:37:31 das Exp $ + * RCS: @(#) $Id: tkMacOSXMenubutton.c,v 1.8 2005/11/27 06:47:25 das Exp $ */ #include <Carbon/Carbon.h> @@ -22,7 +22,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 kShadowOffset (3) /* amount to offset shadow from frame */ |