mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
Corrected issue with getting the cell classname and added the image cell to the class plist.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@20006 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d14d1c458b
commit
00bbf07af3
3 changed files with 12 additions and 1 deletions
|
@ -1,3 +1,11 @@
|
|||
2004-09-06 08:52 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* ClassInformation.plist: Added missing NSImageCell class
|
||||
description.
|
||||
* Palettes/3Containers/inspectors.m: Corrected issue with
|
||||
getting the class name of the data cell in
|
||||
[GormTableColumnAttributesInspector _getCellClassName].
|
||||
|
||||
2004-09-06 08:38 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* ClassInformation.plist: Reformatted to canonical plist.
|
||||
|
|
|
@ -334,6 +334,9 @@
|
|||
NSImage = {
|
||||
Super = NSObject;
|
||||
};
|
||||
NSImageCell = {
|
||||
Super = NSCell;
|
||||
};
|
||||
NSImageView = {
|
||||
Super = NSControl;
|
||||
};
|
||||
|
|
|
@ -234,7 +234,7 @@
|
|||
|
||||
if(customClassName == nil)
|
||||
{
|
||||
result = NSStringFromClass(cell);
|
||||
result = NSStringFromClass([cell class]);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue