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:
Gregory John Casamento 2004-09-06 12:53:43 +00:00
parent d14d1c458b
commit 00bbf07af3
3 changed files with 12 additions and 1 deletions

View file

@ -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.

View file

@ -334,6 +334,9 @@
NSImage = {
Super = NSObject;
};
NSImageCell = {
Super = NSCell;
};
NSImageView = {
Super = NSControl;
};

View file

@ -234,7 +234,7 @@
if(customClassName == nil)
{
result = NSStringFromClass(cell);
result = NSStringFromClass([cell class]);
}
else
{