* Palettes/3Containers/GormNSTableView.m

([-tableView:objectValueForTableColumn:row:]): Do not assume that
	the identifier of the table column is an NSString.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@22845 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
David Ayers 2006-05-01 07:51:35 +00:00
parent dd7c51c1f4
commit d8ffaf103a
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2006-05-01 07:45 David Ayers <d.ayers@inode.at>
* Palettes/3Containers/GormNSTableView.m
([-tableView:objectValueForTableColumn:row:]): Do not assume that
the identifier of the table column is an NSString.
2006-04-30 09:15 David Ayers <d.ayers@inode.at>
* GormCore/GormCustomClassInspector.m

View file

@ -70,7 +70,7 @@ static NSString* value2[] =
objectValueForTableColumn:(NSTableColumn *)aTableColumn
row:(int)rowIndex
{
if ([[aTableColumn identifier] isEqualToString: @"column1"])
if ([[aTableColumn identifier] isEqual: @"column1"])
{
return value1[rowIndex];
}