diff options
| author | Duane Wandless | 2012-09-22 09:22:20 -0400 |
|---|---|---|
| committer | Duane Wandless | 2012-09-22 09:22:20 -0400 |
| commit | afc25e4b7d5cc2a660b00b63b457118080ba050a (patch) | |
| tree | a0bef6c3b7c756b9926d380ee6aa6d538542231f /MASShortcut.h | |
| parent | 344e3e19991052eb1b47a504f6fccbcab471a23e (diff) | |
| download | MASShortcut-afc25e4b7d5cc2a660b00b63b457118080ba050a.tar.bz2 | |
Fixes for 32 bit compile
Diffstat (limited to 'MASShortcut.h')
| -rw-r--r-- | MASShortcut.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/MASShortcut.h b/MASShortcut.h index 3c6c109..4fe3ce2 100644 --- a/MASShortcut.h +++ b/MASShortcut.h @@ -30,7 +30,10 @@ enum { kMASShortcutGlyphSoutheastArrow = 0x2198, } MASShortcutGlyph; -@interface MASShortcut : NSObject <NSCoding> +@interface MASShortcut : NSObject <NSCoding> { + NSUInteger _keyCode; // NSNotFound if empty + NSUInteger _modifierFlags; // 0 if empty +} @property (nonatomic) NSUInteger keyCode; @property (nonatomic) NSUInteger modifierFlags; |
