mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
* 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:
parent
dd7c51c1f4
commit
d8ffaf103a
2 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue