Develop and Download Open Source Software

Browse CVS Repository

Diff of /undmail/guiproto/DUMMailBoxManager.m

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.1 by footashida, Sat Jan 25 13:23:47 2003 UTC revision 1.2 by footashida, Wed Jan 29 18:56:31 2003 UTC
# Line 6  Line 6 
6      DUMMailBox *inbox;      DUMMailBox *inbox;
7      DUMMailBox *outbox;      DUMMailBox *outbox;
8      DUMMailBox *sent;      DUMMailBox *sent;
9        DUMMailBox *draft;
10        DUMMailBox *trash;
11      NSBundle *mainBundle;      NSBundle *mainBundle;
12      NSString *resourcePath;      NSString *resourcePath;
13            
# Line 30  Line 32 
32                       value:nil                       value:nil
33                       table:nil]                       table:nil]
34          dataFilePath:nil];          dataFilePath:nil];
35        draft = [[DUMMailBox alloc] initWithName:
36            [mainBundle localizedStringForKey:@"FolderLabel_Draft"
37                         value:nil
38                         table:nil]
39            dataFilePath:nil];
40        trash = [[DUMMailBox alloc] initWithName:
41            [mainBundle localizedStringForKey:@"FolderLabel_Trash"
42                         value:nil
43                         table:nil]
44            dataFilePath:nil];
45    
46      [root addMailBox:inbox];      [root addMailBox:inbox];
47      [root addMailBox:outbox];      [root addMailBox:outbox];
48      [root addMailBox:sent];      [root addMailBox:sent];
49        [root addMailBox:draft];
50        [root addMailBox:trash];
51            
52      [inbox release];      [inbox release];
53      [outbox release];      [outbox release];
54      [sent release];      [sent release];
55        [draft release];
56        [trash release];
57            
58      return self;      return self;
59  }  }

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26