Fix bugs
[pithos-macos] / pithos-macos / PithosPreferencesController.h
index bccb69f..b97f171 100644 (file)
@@ -42,7 +42,7 @@
 @interface PithosPreferencesController : NSWindowController <NSWindowDelegate, NSOutlineViewDataSource> {
     PithosAccount *selectedPithosAccount;
     
-    NSArrayController *__unsafe_unretained accountsArrayController;
+    IBOutlet NSArrayController *accountsArrayController;
     
     BOOL accountRemoveEnable;
     
     NSMutableDictionary *syncAccountsDictionary;
     BOOL syncApplyEnable;
     BOOL syncCancelEnable;
-    NSOutlineView *__unsafe_unretained syncAccountsOutlineView;
+    IBOutlet NSOutlineView *syncAccountsOutlineView;
     PithosEmptyNode *syncAccountsMyAccountNode;
     NSMutableDictionary *syncAccountsRootFilesNodes;
     
-    NSDictionaryController *__unsafe_unretained groupsDictionaryController;
-    NSDictionaryController *__unsafe_unretained selectedGroupMembersDictionaryController;
+    IBOutlet NSDictionaryController *groupsDictionaryController;
+    IBOutlet NSDictionaryController *selectedGroupMembersDictionaryController;
 }
 
 @property (nonatomic, strong) PithosAccount *selectedPithosAccount;
 
-@property (nonatomic, unsafe_unretained) IBOutlet NSArrayController *accountsArrayController;
-
 @property (nonatomic, assign) BOOL accountRemoveEnable;
 
 @property (nonatomic, copy) NSString *serverURL;
 @property (nonatomic, copy) NSMutableDictionary *syncAccountsDictionary;
 @property (nonatomic, assign) BOOL syncApplyEnable;
 @property (nonatomic, assign) BOOL syncCancelEnable;
-@property (nonatomic, unsafe_unretained) IBOutlet NSOutlineView *syncAccountsOutlineView;
 @property (nonatomic, strong) NSMutableDictionary *syncAccountsRootFilesNodes;
 
-@property (nonatomic, unsafe_unretained) IBOutlet NSDictionaryController *groupsDictionaryController;
-@property (nonatomic, unsafe_unretained) IBOutlet NSDictionaryController *selectedGroupMembersDictionaryController;
-
 //- (IBAction)toolbarItemSelected:(id)sender;
 
 - (IBAction)addAccount:(id)sender;