transmission/macosx/ActionPopUpButton.m

16 lines
305 B
Mathematica
Raw Normal View History

#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