Personal pane commit.

This commit is contained in:
hyatt%netscape.com 2002-04-20 23:04:29 +00:00
parent 9c94bdf184
commit 926b5e4e90
6 changed files with 56 additions and 0 deletions

Binary file not shown.

View File

@ -0,0 +1,9 @@
#import <Cocoa/Cocoa.h>
#import <PreferencePanes/NSPreferencePane.h>
@interface PersonalPane : NSPreferencePane
{
}
@end

View File

@ -0,0 +1,19 @@
#import "PersonalPane.h"
@implementation PersonalPane
- (id) initWithBundle:(NSBundle *) bundle {
self = [super initWithBundle:bundle] ;
return self ;
}
- (void)awakeFromNib
{
}
- (void)mainViewDidLoad
{
}
@end

Binary file not shown.

View File

@ -0,0 +1,9 @@
#import <Cocoa/Cocoa.h>
#import <PreferencePanes/NSPreferencePane.h>
@interface PersonalPane : NSPreferencePane
{
}
@end

View File

@ -0,0 +1,19 @@
#import "PersonalPane.h"
@implementation PersonalPane
- (id) initWithBundle:(NSBundle *) bundle {
self = [super initWithBundle:bundle] ;
return self ;
}
- (void)awakeFromNib
{
}
- (void)mainViewDidLoad
{
}
@end