diff --git a/Preferences/General/UpdatesPane.h b/Preferences/General/UpdatesPane.h new file mode 100644 index 000000000..26d99f009 --- /dev/null +++ b/Preferences/General/UpdatesPane.h @@ -0,0 +1,16 @@ +// +// FileDrawerPane.h +// Preferences +// +// Created by Vincent Spader on 9/4/06. +// Copyright 2006 Vincent Spader. All rights reserved. +// + +#import +#import "PreferencePane.h" + + +@interface UpdatesPane : PreferencePane { +} + +@end diff --git a/Preferences/General/UpdatesPane.m b/Preferences/General/UpdatesPane.m new file mode 100644 index 000000000..61ae5e58b --- /dev/null +++ b/Preferences/General/UpdatesPane.m @@ -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