ObjGUI  Artifact [da657c193d]

Artifact da657c193de7198719f9a06ba811e7424bbae5cd2a756c48137727d78032e2d0:


#import "OGComboBoxItem.h"

@implementation OGComboBoxItem
@synthesize label;

+ comboBoxItemWithLabel: (OFString*)label
{
	return [[[self alloc] initWithLabel: label] autorelease];
}

- initWithLabel: (OFString*)label_
{
	self = [super init];

	@try {
		label = [label_ copy];
	} @catch (id e) {
		[self release];
		@throw e;
	}

	return self;
}

- (void)dealloc
{
	[label release];

	[super dealloc];
}
@end