gecko-dev/camino/PreferencePanes/Personal/PersonalPane.m

22 строки
313 B
Mathematica
Исходник Обычный вид История

2002-04-21 03:04:29 +04:00
#import "PersonalPane.h"
@implementation PersonalPane
- (id) initWithBundle:(NSBundle *) bundle {
self = [super initWithBundle:bundle] ;
return self ;
}
- (void)awakeFromNib
{
2002-05-23 04:24:08 +04:00
NSLog(@"Personal Pane awoke from nib");
2002-04-21 03:04:29 +04:00
}
- (void)mainViewDidLoad
{
2002-05-23 04:24:08 +04:00
NSLog(@"Personal Pane did load main view");
2002-04-21 03:04:29 +04:00
}
@end