Added updates preference pane.
parent
0eb3b540d5
commit
9f094a11de
|
@ -0,0 +1,16 @@
|
||||||
|
//
|
||||||
|
// FileDrawerPane.h
|
||||||
|
// Preferences
|
||||||
|
//
|
||||||
|
// Created by Vincent Spader on 9/4/06.
|
||||||
|
// Copyright 2006 Vincent Spader. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
#import <Cocoa/Cocoa.h>
|
||||||
|
#import "PreferencePane.h"
|
||||||
|
|
||||||
|
|
||||||
|
@interface UpdatesPane : PreferencePane {
|
||||||
|
}
|
||||||
|
|
||||||
|
@end
|
|
@ -0,0 +1,20 @@
|
||||||
|
//
|
||||||
|
// FileDrawerPane.m
|
||||||
|
// Preferences
|
||||||
|
//
|
||||||
|
// Created by Vincent Spader on 9/4/06.
|
||||||
|
// Copyright 2006 Vincent Spader. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
#import "UpdatesPane.h"
|
||||||
|
|
||||||
|
|
||||||
|
@implementation UpdatesPane
|
||||||
|
|
||||||
|
- (void)awakeFromNib
|
||||||
|
{
|
||||||
|
[self setName:@"Updates"];
|
||||||
|
[self setIcon:@"updates"];
|
||||||
|
}
|
||||||
|
|
||||||
|
@end
|
Loading…
Reference in New Issue