Revision cb6abe72 pithos-macos/PithosNode.h

b/pithos-macos/PithosNode.h
53 53
    
54 54
    NSString *url;    
55 55
    
56
    PithosNode *parent;
56
    PithosNode *__unsafe_unretained parent;
57 57
    BOOL shared;
58 58
    NSString *sharingAccount;
59 59
    NSMutableArray *children;
......
71 71

  
72 72
@property(nonatomic, assign) BOOL forcedRefresh;
73 73

  
74
@property(nonatomic, readonly) NSString *url;
74
@property(unsafe_unretained, nonatomic, readonly) NSString *url;
75 75

  
76
@property(nonatomic, assign) PithosNode *parent;
76
@property(nonatomic, unsafe_unretained) PithosNode *parent;
77 77
@property(nonatomic, assign) BOOL shared;
78
@property(nonatomic, retain) NSString *sharingAccount;
79
@property(nonatomic, readonly) NSArray *children;
80
@property(nonatomic, retain) NSString *childrenUpdatedNotificationName;
78
@property(nonatomic, strong) NSString *sharingAccount;
79
@property(unsafe_unretained, nonatomic, readonly) NSArray *children;
80
@property(nonatomic, strong) NSString *childrenUpdatedNotificationName;
81 81
@property(nonatomic, assign) BOOL inheritChildrenUpdatedNotificationName;
82 82

  
83
@property(nonatomic, retain) NSString *displayName;
83
@property(nonatomic, strong) NSString *displayName;
84 84
@property(nonatomic, readonly) BOOL isLeafItem;
85 85

  
86
@property(nonatomic, retain) NSImage *icon;
86
@property(nonatomic, strong) NSImage *icon;
87 87

  
88
@property(nonatomic, retain) ASIPithos *pithos;
89
@property(nonatomic, retain) ASIPithosAccount *pithosAccount;
90
@property(nonatomic, retain) ASIPithosContainer *pithosContainer;
91
@property(nonatomic, retain) ASIPithosObject *pithosObject;
88
@property(nonatomic, strong) ASIPithos *pithos;
89
@property(nonatomic, strong) ASIPithosAccount *pithosAccount;
90
@property(nonatomic, strong) ASIPithosContainer *pithosContainer;
91
@property(nonatomic, strong) ASIPithosObject *pithosObject;
92 92

  
93 93
- (void)invalidateChildren;
94 94
- (void)invalidateChildrenRecursive;

Also available in: Unified diff