The R Project SVN R-packages

Rev

Rev 5864 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5864 Rev 5865
Line 35... Line 35...
35
#import "RDataEditorTableHeaderCell.h"
35
#import "RDataEditorTableHeaderCell.h"
36
 
36
 
37
 
37
 
38
@implementation RDataEditorTableHeaderCell
38
@implementation RDataEditorTableHeaderCell
39
 
39
 
-
 
40
- (id)initTextCell:(NSString *)aString
-
 
41
{
-
 
42
	if(orgTitle) [orgTitle release];
-
 
43
	if(!aString) aString = @"";
-
 
44
	orgTitle = [aString copy];
-
 
45
	return [super initTextCell:aString];
-
 
46
}
-
 
47
 
40
- (BOOL)isEditable
48
- (BOOL)isEditable
41
{
49
{
42
	return YES;
50
	return YES;
43
}
51
}
44
 
52