diff options
author | das <das@noemail.net> | 2005-11-27 06:47:33 (GMT) |
---|---|---|
committer | das <das@noemail.net> | 2005-11-27 06:47:33 (GMT) |
commit | 28f4a7abaa5cd934b5785d8f7c1c9ca017e00ad6 (patch) | |
tree | 03105d4a21e3e274820d9bd0ff1d2112b45e0d5a | |
parent | a88072f9d80c251b9daae2ab4c5123f298182749 (diff) | |
download | tk-28f4a7abaa5cd934b5785d8f7c1c9ca017e00ad6.zip tk-28f4a7abaa5cd934b5785d8f7c1c9ca017e00ad6.tar.gz tk-28f4a7abaa5cd934b5785d8f7c1c9ca017e00ad6.tar.bz2 |
typo in last commit
FossilOrigin-Name: c14bb6cd2a2fb56c916a67d6ce72856ac4c8ba87
-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 f2f9988..9b3c9a6 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.6.2.12 2005/11/27 06:37:58 das Exp $ + * RCS: @(#) $Id: tkMacOSXMenu.c,v 1.6.2.13 2005/11/27 06:47:33 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 7fc7905..91460a8 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.2.2.5 2005/11/27 06:37:59 das Exp $ + * RCS: @(#) $Id: tkMacOSXMenubutton.c,v 1.2.2.6 2005/11/27 06:47:33 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 */ |