Browse CVS Repository
Diff of /undmail/guiproto/DUMMailBoxManager.m
Parent Directory
| Revision Log
| Revision Graph
| Patch
| 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 |
|
|
| 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 |
|
|
|