Revision cb6abe72 pithos-macos/PithosPreferencesController.h

b/pithos-macos/PithosPreferencesController.h
42 42
@interface PithosPreferencesController : NSWindowController <NSWindowDelegate, NSOutlineViewDataSource> {
43 43
    PithosAccount *selectedPithosAccount;
44 44
    
45
    NSArrayController *accountsArrayController;
45
    NSArrayController *__unsafe_unretained accountsArrayController;
46 46
    
47 47
    BOOL accountRemoveEnable;
48 48
    
......
59 59
    NSMutableDictionary *syncAccountsDictionary;
60 60
    BOOL syncApplyEnable;
61 61
    BOOL syncCancelEnable;
62
    NSOutlineView *syncAccountsOutlineView;
62
    NSOutlineView *__unsafe_unretained syncAccountsOutlineView;
63 63
    PithosEmptyNode *syncAccountsMyAccountNode;
64 64
    NSMutableDictionary *syncAccountsRootFilesNodes;
65 65
    
66
    NSDictionaryController *groupsDictionaryController;
67
    NSDictionaryController *selectedGroupMembersDictionaryController;
66
    NSDictionaryController *__unsafe_unretained groupsDictionaryController;
67
    NSDictionaryController *__unsafe_unretained selectedGroupMembersDictionaryController;
68 68
}
69 69

  
70
@property (nonatomic, retain) PithosAccount *selectedPithosAccount;
70
@property (nonatomic, strong) PithosAccount *selectedPithosAccount;
71 71

  
72
@property (nonatomic, assign) IBOutlet NSArrayController *accountsArrayController;
72
@property (nonatomic, unsafe_unretained) IBOutlet NSArrayController *accountsArrayController;
73 73

  
74 74
@property (nonatomic, assign) BOOL accountRemoveEnable;
75 75

  
......
86 86
@property (nonatomic, copy) NSMutableDictionary *syncAccountsDictionary;
87 87
@property (nonatomic, assign) BOOL syncApplyEnable;
88 88
@property (nonatomic, assign) BOOL syncCancelEnable;
89
@property (nonatomic, assign) IBOutlet NSOutlineView *syncAccountsOutlineView;
90
@property (nonatomic, retain) NSMutableDictionary *syncAccountsRootFilesNodes;
89
@property (nonatomic, unsafe_unretained) IBOutlet NSOutlineView *syncAccountsOutlineView;
90
@property (nonatomic, strong) NSMutableDictionary *syncAccountsRootFilesNodes;
91 91

  
92
@property (nonatomic, assign) IBOutlet NSDictionaryController *groupsDictionaryController;
93
@property (nonatomic, assign) IBOutlet NSDictionaryController *selectedGroupMembersDictionaryController;
92
@property (nonatomic, unsafe_unretained) IBOutlet NSDictionaryController *groupsDictionaryController;
93
@property (nonatomic, unsafe_unretained) IBOutlet NSDictionaryController *selectedGroupMembersDictionaryController;
94 94

  
95 95
//- (IBAction)toolbarItemSelected:(id)sender;
96 96

  

Also available in: Unified diff