Added updates preference pane.

CQTexperiment
vspader 2007-02-19 02:57:58 +00:00
parent 0eb3b540d5
commit 9f094a11de
2 changed files with 36 additions and 0 deletions

View File

@ -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

View File

@ -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