]> granicus.if.org Git - transmission/commitdiff
make the children in a FileListNode a property
authorMitchell Livingston <livings124@transmissionbt.com>
Tue, 19 Feb 2013 01:29:25 +0000 (01:29 +0000)
committerMitchell Livingston <livings124@transmissionbt.com>
Tue, 19 Feb 2013 01:29:25 +0000 (01:29 +0000)
macosx/FileListNode.h
macosx/FileListNode.m

index 901ba7908738e1cd1cf0b07001479236c4f8f834..8e26f48b3f468c77b53ef8dee64c438e666cd348 100644 (file)
 {
     NSMutableIndexSet * fIndexes;
     
-    NSMutableArray * fChildren;
-    
     NSString * fName;
     NSString * fPath;
     Torrent * fTorrent;
     uint64_t fSize;
     NSImage * fIcon;
     BOOL fIsFolder;
+    NSMutableArray * fChildren;
 }
 
 @property (nonatomic, copy, readonly) NSString * name;
@@ -48,6 +47,7 @@
 @property (nonatomic, readonly) uint64_t size;
 @property (nonatomic, retain, readonly) NSImage * icon;
 @property (nonatomic, readonly) BOOL isFolder;
+@property (nonatomic, retain, readonly) NSMutableArray * children;
 
 @property (nonatomic, retain, readonly) NSIndexSet * indexes;
 
@@ -59,8 +59,6 @@
 
 - (NSString *) description;
 
-- (NSMutableArray *) children;
-
 - (BOOL) updateFromOldName: (NSString *) oldName toNewName: (NSString *) newName inPath: (NSString *) path;
 
 @end
index 295942013bb323dc0e3a44287e69579f9b14cd1c..91af2953e5e227de941c247784e04f7ab338c523 100644 (file)
@@ -40,6 +40,7 @@
 @synthesize icon = fIcon;
 @synthesize isFolder = fIsFolder;
 @synthesize indexes = fIndexes;
+@synthesize children = fChildren;
 
 - (id) initWithFolderName: (NSString *) name path: (NSString *) path torrent: (Torrent *) torrent
 {
     [fName release];
     [fPath release];
     [fIndexes release];
-    
     [fIcon release];
-    
     [fChildren release];
-    
     [super dealloc];
 }