* GormCore/GormCustomClassInspector.m

([-_replaceWithCellClassForClassName:]): Cast to NSCell to invoke
	type to disambiguate incompatible method signatures.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@22841 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
David Ayers 2006-04-30 09:17:09 +00:00
parent 77a43cc5ef
commit dd7c51c1f4
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2006-04-30 09:15 David Ayers <d.ayers@inode.at>
* GormCore/GormCustomClassInspector.m
([-_replaceWithCellClassForClassName:]): Cast to NSCell to invoke
type to disambiguate incompatible method signatures.
2006-04-08 15:16 Gregory John Casamento <greg_casamento@yahoo.com>
* Version 1.0.6

View file

@ -255,7 +255,7 @@
[newCell setState: [cell state]];
}
if([cell type] == NSTextCellType)
if([(NSCell *)cell type] == NSTextCellType)
{
// title...
if([newCell respondsToSelector: @selector(setStringValue:)] &&
@ -274,7 +274,7 @@
[newCell setAlternateTitle: [cell alternateTitle]];
}
}
else if([cell type] == NSImageCellType)
else if([(NSCell *)cell type] == NSImageCellType)
{
// images...
if([newCell respondsToSelector: @selector(setAlternateImage:)] &&