git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67888
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
- (id) init
{
- [super init];
+ self = [super init];
column = nil;
return self;
}
- (id) init
{
- [super init];
+ self = [super init];
impl = nil;
return self;
}
- (id) initWithTitle:(NSString*) title
{
- [super initWithTitle:title];
+ self = [super initWithTitle:title];
impl = NULL;
return self;
}
- (id) init
{
- [super init];
+ self = [super init];
return self;
}
- (id) initWithTitle:(NSString *)aString action:(SEL)aSelector keyEquivalent:(NSString *)charCode
{
- [super initWithTitle:aString action:aSelector keyEquivalent:charCode];
- return self;
+ self = [super initWithTitle:aString action:aSelector keyEquivalent:charCode];
+ return self;
}
- (void) clickedAction: (id) sender