Files
transmission/macosx/ActionPopUpButton.m
2007-01-02 03:10:11 +00:00

21 lines
369 B
Objective-C

#import "ActionPopUpButton.h"
#import "ActionPopUpButtonCell.h"
@implementation ActionPopUpButton
+ (Class) cellClass
{
return [ActionPopUpButtonCell class];
}
- (id) initWithCoder: (NSCoder *) coder
{
if (self = [super initWithCoder: coder])
{
[self setCell: [[ActionPopUpButtonCell alloc] initTextCell: @"" pullsDown: YES]];
}
return self;
}
@end