20 lines
248 B
Objective-C
20 lines
248 B
Objective-C
#import "PersonalPane.h"
|
|
|
|
@implementation OrgMozillaChimeraPreferencePersonal
|
|
|
|
|
|
- (id) initWithBundle:(NSBundle *) bundle {
|
|
self = [super initWithBundle:bundle] ;
|
|
return self ;
|
|
}
|
|
|
|
- (void)awakeFromNib
|
|
{
|
|
}
|
|
|
|
- (void)mainViewDidLoad
|
|
{
|
|
}
|
|
|
|
@end
|