GCC_PREFIX_HEADER = Enjoy_Prefix.pch;
INFOPLIST_FILE = Info.plist;
INSTALL_PATH = "$(HOME)/Applications";
- MACOSX_DEPLOYMENT_TARGET = 10.6.8;
+ MACOSX_DEPLOYMENT_TARGET = 10.7;
PRODUCT_NAME = Enjoy;
};
name = Debug;
GCC_PREFIX_HEADER = Enjoy_Prefix.pch;
INFOPLIST_FILE = Info.plist;
INSTALL_PATH = "$(HOME)/Applications";
- MACOSX_DEPLOYMENT_TARGET = 10.6.8;
+ MACOSX_DEPLOYMENT_TARGET = 10.7;
PRODUCT_NAME = Enjoy;
};
name = Release;
#import <Foundation/Foundation.h>
#import <IOKit/hid/IOHIDBase.h>
-@interface JSAction : NSObject {
- id base;
- NSString *name;
-}
+@interface JSAction : NSObject
-@property (assign) void* cookie;
+@property (assign) void *cookie;
@property (assign) int index;
@property (copy) NSArray *children;
-@property (strong) id base;
+@property (weak) id base;
@property (copy) NSString *name;
@property (assign) BOOL active;
@property (readonly) float magnitude;
}
-(NSString*) stringify {
- return [[NSString alloc] initWithFormat: @"%@~%d", [base stringify], self.index];
+ return [[NSString alloc] initWithFormat: @"%@~%d", [self.base stringify], self.index];
}
@end