This repository has been archived on 2025-06-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
ObjGUI.old/gtk/OGComboBoxItem.m
2011-12-28 20:23:01 +01:00

31 lines
410 B
Objective-C

#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