21 lines
300 B
Objective-C
21 lines
300 B
Objective-C
//
|
|
// FileDrawerPane.m
|
|
// Preferences
|
|
//
|
|
// Created by Vincent Spader on 9/4/06.
|
|
// Copyright 2006 Vincent Spader. All rights reserved.
|
|
//
|
|
|
|
#import "FileDrawerPane.h"
|
|
|
|
|
|
@implementation FileDrawerPane
|
|
|
|
- (void)awakeFromNib
|
|
{
|
|
[self setName:@"File Drawer"];
|
|
[self setIcon:@"file_drawer"];
|
|
}
|
|
|
|
@end
|