Update to ARC (probably introducing some leaks, probably fixing others).
[enjoyable.git] / JSAction.h
index 50e37e2..1e60cf2 100644 (file)
 @interface JSAction : NSObject {
        int usage, index;
        void* cookie;
-       NSArraysubActions;
+       NSArray *subActions;
        id base;
-       NSStringname;
+       NSString *name;
 }
 
 @property(readwrite) int usage;
 @property(readwrite) void* cookie;
 @property(readonly) int index;
-@property(readonly) NSArray* subActions;
-@property(readwrite, retain) id base;
-@property(readonly) NSString* name;
+@property(copy) NSArray* subActions;
+@property(readwrite, strong) id base;
+@property(copy) NSString* name;
 @property(readonly) BOOL active;
 
 -(void) notifyEvent: (IOHIDValueRef) value;