mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-18 23:15:03 -05:00
36 lines
465 B
Objective-C
36 lines
465 B
Objective-C
/**
|
|
* Author: Timothy Prepscius
|
|
* License: BSD + keep my name in the code!
|
|
*/
|
|
|
|
|
|
#import "AddToFoldersTableCell.h"
|
|
|
|
@interface AddToFoldersTableCell ()
|
|
|
|
@end
|
|
|
|
@implementation AddToFoldersTableCell
|
|
@synthesize toggle;
|
|
@synthesize label;
|
|
|
|
- (id)initWithCoder:(NSCoder *)aDecoder
|
|
{
|
|
LogDebug(ui::AddToFoldersTableCell, "init");
|
|
|
|
self = [super initWithCoder:aDecoder];
|
|
|
|
if (self)
|
|
{
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
- (void)postLoadInit
|
|
{
|
|
[self.toggle initToggle];
|
|
}
|
|
|
|
@end
|