Files
transmission/macosx/ActionPopUpButton.m
Mitchell Livingston afb50f6997 some cleanup
2007-01-02 16:50:12 +00:00

16 lines
305 B
Objective-C

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