mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-23 19:51:00 +00:00
* 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:
parent
77a43cc5ef
commit
dd7c51c1f4
2 changed files with 8 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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:)] &&
|
||||
|
|
Loading…
Reference in a new issue