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